Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
CreatureChat
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Jobs
Commits
Open sidebar
Public
CreatureChat
Commits
009f258b
Unverified
Commit
009f258b
authored
Nov 22, 2022
by
modmuss50
Committed by
GitHub
Nov 22, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update dependencies (#220)
parent
242f56a7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
8 deletions
+10
-8
build.yml
.github/workflows/build.yml
+5
-4
gradle.properties
gradle.properties
+4
-3
fabric.mod.json
src/main/resources/fabric.mod.json
+1
-1
No files found.
.github/workflows/build.yml
View file @
009f258b
...
@@ -15,17 +15,18 @@ jobs:
...
@@ -15,17 +15,18 @@ jobs:
17
,
# Current Java LTS & minimum supported by Minecraft
17
,
# Current Java LTS & minimum supported by Minecraft
]
]
# and run on both Linux and Windows
# and run on both Linux and Windows
os
:
[
ubuntu-2
0
.04
,
windows-2022
]
os
:
[
ubuntu-2
2
.04
,
windows-2022
]
runs-on
:
${{ matrix.os }}
runs-on
:
${{ matrix.os }}
steps
:
steps
:
-
name
:
checkout repository
-
name
:
checkout repository
uses
:
actions/checkout@v
2
uses
:
actions/checkout@v
3
-
name
:
validate gradle wrapper
-
name
:
validate gradle wrapper
uses
:
gradle/wrapper-validation-action@v1
uses
:
gradle/wrapper-validation-action@v1
-
name
:
setup jdk ${{ matrix.java }}
-
name
:
setup jdk ${{ matrix.java }}
uses
:
actions/setup-java@v
1
uses
:
actions/setup-java@v
3
with
:
with
:
java-version
:
${{ matrix.java }}
java-version
:
${{ matrix.java }}
distribution
:
'
microsoft'
-
name
:
make gradle wrapper executable
-
name
:
make gradle wrapper executable
if
:
${{ runner.os != 'Windows' }}
if
:
${{ runner.os != 'Windows' }}
run
:
chmod +x ./gradlew
run
:
chmod +x ./gradlew
...
@@ -33,7 +34,7 @@ jobs:
...
@@ -33,7 +34,7 @@ jobs:
run
:
./gradlew build
run
:
./gradlew build
-
name
:
capture build artifacts
-
name
:
capture build artifacts
if
:
${{ runner.os == 'Linux' && matrix.java == '17' }}
# Only upload artifacts built from latest java on one OS
if
:
${{ runner.os == 'Linux' && matrix.java == '17' }}
# Only upload artifacts built from latest java on one OS
uses
:
actions/upload-artifact@v
2
uses
:
actions/upload-artifact@v
3
with
:
with
:
name
:
Artifacts
name
:
Artifacts
path
:
build/libs/
path
:
build/libs/
gradle.properties
View file @
009f258b
# Done to increase the memory available to gradle.
# Done to increase the memory available to gradle.
org.gradle.jvmargs
=
-Xmx1G
org.gradle.jvmargs
=
-Xmx1G
org.gradle.parallel
=
true
# Fabric Properties
# Fabric Properties
# check these on https://fabricmc.net/develop
# check these on https://fabricmc.net/develop
minecraft_version
=
1.19.2
minecraft_version
=
1.19.2
yarn_mappings
=
1.19.2+build.8
yarn_mappings
=
1.19.2+build.
2
8
loader_version
=
0.14.
9
loader_version
=
0.14.
10
# Mod Properties
# Mod Properties
mod_version
=
1.0.0
mod_version
=
1.0.0
...
@@ -13,4 +14,4 @@ org.gradle.jvmargs=-Xmx1G
...
@@ -13,4 +14,4 @@ org.gradle.jvmargs=-Xmx1G
archives_base_name
=
fabric-example-mod
archives_base_name
=
fabric-example-mod
# Dependencies
# Dependencies
fabric_version
=
0.6
0
.0+1.19.2
fabric_version
=
0.6
7
.0+1.19.2
src/main/resources/fabric.mod.json
View file @
009f258b
...
@@ -27,7 +27,7 @@
...
@@ -27,7 +27,7 @@
],
],
"depends"
:
{
"depends"
:
{
"fabricloader"
:
">=0.14.
9
"
,
"fabricloader"
:
">=0.14.
10
"
,
"fabric-api"
:
"*"
,
"fabric-api"
:
"*"
,
"minecraft"
:
"~1.19"
,
"minecraft"
:
"~1.19"
,
"java"
:
">=17"
"java"
:
">=17"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment