aboutsummaryrefslogtreecommitdiff
path: root/build.gradle.kts
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle.kts')
-rw-r--r--build.gradle.kts17
1 files changed, 6 insertions, 11 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
index 92c3c31..c5fae3f 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -1,9 +1,9 @@
plugins {
java
- id("net.fabricmc.fabric-loom-remap") version "1.15-SNAPSHOT"
+ id("net.fabricmc.fabric-loom") version "1.17-SNAPSHOT"
}
-val minecraftVersion = "1.21.11"
+val minecraftVersion = "26.2"
version = "1.0.3+$minecraftVersion"
group = "net.inyourwalls"
@@ -14,22 +14,17 @@ repositories {
dependencies {
// Fabric/Minecraft dependencies.
- val yarnBuild = "4"
minecraft("com.mojang:minecraft:$minecraftVersion")
- mappings(loom.officialMojangMappings())
- modImplementation("net.fabricmc:fabric-loader:0.18.4")
- modImplementation("net.fabricmc.fabric-api:fabric-api:0.141.3+$minecraftVersion")
-
- modImplementation("com.terraformersmc:modmenu:17.0.0-beta.2")
+ implementation("net.fabricmc:fabric-loader:0.18.4")
+ 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)
}
}
}