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
2 years ago
by
modmuss50
Committed by
GitHub
2 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update dependencies (#220)
parent
242f56a7
Show 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:
17
,
# Current Java LTS & minimum supported by Minecraft
]
# 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 }}
steps
:
-
name
:
checkout repository
uses
:
actions/checkout@v
2
uses
:
actions/checkout@v
3
-
name
:
validate gradle wrapper
uses
:
gradle/wrapper-validation-action@v1
-
name
:
setup jdk ${{ matrix.java }}
uses
:
actions/setup-java@v
1
uses
:
actions/setup-java@v
3
with
:
java-version
:
${{ matrix.java }}
distribution
:
'
microsoft'
-
name
:
make gradle wrapper executable
if
:
${{ runner.os != 'Windows' }}
run
:
chmod +x ./gradlew
...
...
@@ -33,7 +34,7 @@ jobs:
run
:
./gradlew build
-
name
:
capture build artifacts
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
:
name
:
Artifacts
path
:
build/libs/
This diff is collapsed.
Click to expand it.
gradle.properties
View file @
009f258b
# Done to increase the memory available to gradle.
org.gradle.jvmargs
=
-Xmx1G
org.gradle.parallel
=
true
# Fabric Properties
# check these on https://fabricmc.net/develop
minecraft_version
=
1.19.2
yarn_mappings
=
1.19.2+build.8
loader_version
=
0.14.
9
yarn_mappings
=
1.19.2+build.
2
8
loader_version
=
0.14.
10
# Mod Properties
mod_version
=
1.0.0
...
...
@@ -13,4 +14,4 @@ org.gradle.jvmargs=-Xmx1G
archives_base_name
=
fabric-example-mod
# Dependencies
fabric_version
=
0.6
0
.0+1.19.2
fabric_version
=
0.6
7
.0+1.19.2
This diff is collapsed.
Click to expand it.
src/main/resources/fabric.mod.json
View file @
009f258b
...
...
@@ -27,7 +27,7 @@
],
"depends"
:
{
"fabricloader"
:
">=0.14.
9
"
,
"fabricloader"
:
">=0.14.
10
"
,
"fabric-api"
:
"*"
,
"minecraft"
:
"~1.19"
,
"java"
:
">=17"
...
...
This diff is collapsed.
Click to expand it.
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