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
57e84b57
Commit
57e84b57
authored
Nov 16, 2021
by
modmuss50
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.18-pre2
parent
466c1a80
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
12 deletions
+11
-12
build.yml
.github/workflows/build.yml
+1
-2
build.gradle
build.gradle
+4
-4
gradle.properties
gradle.properties
+3
-3
fabric.mod.json
src/main/resources/fabric.mod.json
+2
-2
modid.mixins.json
src/main/resources/modid.mixins.json
+1
-1
No files found.
.github/workflows/build.yml
View file @
57e84b57
...
...
@@ -12,8 +12,7 @@ jobs:
matrix
:
# Use these Java versions
java
:
[
16
,
# Minimum supported by Minecraft
17
,
# Current Java LTS
17
,
# Current Java LTS & minimum supported by Minecraft
]
# and run on both Linux and Windows
os
:
[
ubuntu-20.04
,
windows-2022
]
...
...
build.gradle
View file @
57e84b57
...
...
@@ -3,8 +3,8 @@ plugins {
id
'maven-publish'
}
sourceCompatibility
=
JavaVersion
.
VERSION_1
6
targetCompatibility
=
JavaVersion
.
VERSION_1
6
sourceCompatibility
=
JavaVersion
.
VERSION_1
7
targetCompatibility
=
JavaVersion
.
VERSION_1
7
archivesBaseName
=
project
.
archives_base_name
version
=
project
.
mod_version
...
...
@@ -37,8 +37,8 @@ processResources {
}
tasks
.
withType
(
JavaCompile
).
configureEach
{
// Minecraft 1.1
7 (21w19a) upwards uses Java 16
.
it
.
options
.
release
=
1
6
// Minecraft 1.1
8 (1.18-pre2) upwards uses Java 17
.
it
.
options
.
release
=
1
7
}
java
{
...
...
gradle.properties
View file @
57e84b57
...
...
@@ -3,8 +3,8 @@ org.gradle.jvmargs=-Xmx1G
# Fabric Properties
# check these on https://fabricmc.net/versions.html
minecraft_version
=
1.1
7.1
yarn_mappings
=
1.1
7.1+build.63
minecraft_version
=
1.1
8-pre2
yarn_mappings
=
1.1
8-pre2+build.1
loader_version
=
0.12.5
# Mod Properties
...
...
@@ -13,4 +13,4 @@ org.gradle.jvmargs=-Xmx1G
archives_base_name
=
fabric-example-mod
# Dependencies
fabric_version
=
0.42.
1+1.17
fabric_version
=
0.42.
4+1.18
src/main/resources/fabric.mod.json
View file @
57e84b57
...
...
@@ -29,8 +29,8 @@
"depends"
:
{
"fabricloader"
:
">=0.11.3"
,
"fabric"
:
"*"
,
"minecraft"
:
"1.1
7
.x"
,
"java"
:
">=1
6
"
"minecraft"
:
"1.1
8
.x"
,
"java"
:
">=1
7
"
},
"suggests"
:
{
"another-mod"
:
"*"
...
...
src/main/resources/modid.mixins.json
View file @
57e84b57
...
...
@@ -2,7 +2,7 @@
"required"
:
true
,
"minVersion"
:
"0.8"
,
"package"
:
"net.fabricmc.example.mixin"
,
"compatibilityLevel"
:
"JAVA_1
6
"
,
"compatibilityLevel"
:
"JAVA_1
7
"
,
"mixins"
:
[
],
"client"
:
[
...
...
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