aboutsummaryrefslogtreecommitdiff
path: root/build.gradle.kts
diff options
context:
space:
mode:
authorRosa <rosaontheweb@proton.me>2026-06-20 17:47:59 -0400
committerRosa <rosaontheweb@proton.me>2026-06-20 17:47:59 -0400
commit44c20fcf884727940864f1cd6f6b90efcd9ea9e8 (patch)
tree3e9fb3700e41886847b8118f76d133532fdb6c17 /build.gradle.kts
parentb3b54f998c2fdbca593256517efc2770976b81ff (diff)
port to 26.2
Diffstat (limited to '')
-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)
}
}
}