aboutsummaryrefslogtreecommitdiff
path: root/build.gradle.kts
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle.kts')
-rw-r--r--build.gradle.kts12
1 files changed, 5 insertions, 7 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
index 69487d1..c5fae3f 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -1,9 +1,9 @@
plugins {
java
- id("net.fabricmc.fabric-loom") version "1.15-SNAPSHOT"
+ id("net.fabricmc.fabric-loom") version "1.17-SNAPSHOT"
}
-val minecraftVersion = "26.1"
+val minecraftVersion = "26.2"
version = "1.0.3+$minecraftVersion"
group = "net.inyourwalls"
@@ -16,17 +16,15 @@ dependencies {
// Fabric/Minecraft dependencies.
minecraft("com.mojang:minecraft:$minecraftVersion")
implementation("net.fabricmc:fabric-loader:0.18.4")
- implementation("net.fabricmc.fabric-api:fabric-api:0.144.0+$minecraftVersion")
- implementation("com.terraformersmc:modmenu:17.0.0-beta.2")
+ implementation("net.fabricmc.fabric-api:fabric-api:0.152.2+$minecraftVersion")
+ implementation("com.terraformersmc:modmenu:20.0.0-beta.3")
}
tasks {
processResources {
inputs.property("version", project.version)
filesMatching("fabric.mod.json") {
- expand(mapOf(
- "version" to project.version
- ))
+ expand("version" to project.version)
}
}
}