summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--build.gradle5
-rw-r--r--gradle.properties6
-rw-r--r--src/main/resources/fabric.mod.json2
3 files changed, 9 insertions, 4 deletions
diff --git a/build.gradle b/build.gradle
index 68661f8..7a3be5d 100644
--- a/build.gradle
+++ b/build.gradle
@@ -26,6 +26,11 @@ dependencies {
 
 	// Fabric API. This is technically optional, but you probably want it anyway.
 	modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
+
+	// Uncomment the following line to enable the deprecated Fabric API modules. 
+	// These are included in the Fabric API production distribution and allow you to update your mod to the latest modules at a later more convenient time.
+
+	// modImplementation "net.fabricmc.fabric-api:fabric-api-deprecated:${project.fabric_version}"
 }
 
 processResources {
diff --git a/gradle.properties b/gradle.properties
index beda762..eed7c75 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -3,8 +3,8 @@ org.gradle.jvmargs=-Xmx1G
 
 # Fabric Properties
 	# check these on https://fabricmc.net/develop
-	minecraft_version=1.18.2
-	yarn_mappings=1.18.2+build.3
+	minecraft_version=1.19
+	yarn_mappings=1.19+build.1
 	loader_version=0.14.6
 
 # Mod Properties
@@ -13,4 +13,4 @@ org.gradle.jvmargs=-Xmx1G
 	archives_base_name = fabric-example-mod
 
 # Dependencies
-	fabric_version=0.53.0+1.18.2
+	fabric_version=0.55.1+1.19
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json
index cf97a4a..730d843 100644
--- a/src/main/resources/fabric.mod.json
+++ b/src/main/resources/fabric.mod.json
@@ -29,7 +29,7 @@
   "depends": {
     "fabricloader": ">=0.14.6",
     "fabric": "*",
-    "minecraft": "~1.18.2",
+    "minecraft": "~1.19",
     "java": ">=17"
   },
   "suggests": {