Commit 57e84b57 by modmuss50

1.18-pre2

parent 466c1a80
...@@ -12,8 +12,7 @@ jobs: ...@@ -12,8 +12,7 @@ jobs:
matrix: matrix:
# Use these Java versions # Use these Java versions
java: [ java: [
16, # Minimum supported by Minecraft 17, # Current Java LTS & minimum supported by Minecraft
17, # Current Java LTS
] ]
# and run on both Linux and Windows # and run on both Linux and Windows
os: [ubuntu-20.04, windows-2022] os: [ubuntu-20.04, windows-2022]
......
...@@ -3,8 +3,8 @@ plugins { ...@@ -3,8 +3,8 @@ plugins {
id 'maven-publish' id 'maven-publish'
} }
sourceCompatibility = JavaVersion.VERSION_16 sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_16 targetCompatibility = JavaVersion.VERSION_17
archivesBaseName = project.archives_base_name archivesBaseName = project.archives_base_name
version = project.mod_version version = project.mod_version
...@@ -37,8 +37,8 @@ processResources { ...@@ -37,8 +37,8 @@ processResources {
} }
tasks.withType(JavaCompile).configureEach { tasks.withType(JavaCompile).configureEach {
// Minecraft 1.17 (21w19a) upwards uses Java 16. // Minecraft 1.18 (1.18-pre2) upwards uses Java 17.
it.options.release = 16 it.options.release = 17
} }
java { java {
......
...@@ -3,8 +3,8 @@ org.gradle.jvmargs=-Xmx1G ...@@ -3,8 +3,8 @@ org.gradle.jvmargs=-Xmx1G
# Fabric Properties # Fabric Properties
# check these on https://fabricmc.net/versions.html # check these on https://fabricmc.net/versions.html
minecraft_version=1.17.1 minecraft_version=1.18-pre2
yarn_mappings=1.17.1+build.63 yarn_mappings=1.18-pre2+build.1
loader_version=0.12.5 loader_version=0.12.5
# Mod Properties # Mod Properties
...@@ -13,4 +13,4 @@ org.gradle.jvmargs=-Xmx1G ...@@ -13,4 +13,4 @@ org.gradle.jvmargs=-Xmx1G
archives_base_name = fabric-example-mod archives_base_name = fabric-example-mod
# Dependencies # Dependencies
fabric_version=0.42.1+1.17 fabric_version=0.42.4+1.18
...@@ -29,8 +29,8 @@ ...@@ -29,8 +29,8 @@
"depends": { "depends": {
"fabricloader": ">=0.11.3", "fabricloader": ">=0.11.3",
"fabric": "*", "fabric": "*",
"minecraft": "1.17.x", "minecraft": "1.18.x",
"java": ">=16" "java": ">=17"
}, },
"suggests": { "suggests": {
"another-mod": "*" "another-mod": "*"
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
"required": true, "required": true,
"minVersion": "0.8", "minVersion": "0.8",
"package": "net.fabricmc.example.mixin", "package": "net.fabricmc.example.mixin",
"compatibilityLevel": "JAVA_16", "compatibilityLevel": "JAVA_17",
"mixins": [ "mixins": [
], ],
"client": [ "client": [
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment