diff options
Diffstat (limited to '')
| -rw-r--r-- | build.gradle.kts | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/build.gradle.kts b/build.gradle.kts new file mode 100644 index 0000000..64d3c25 --- /dev/null +++ b/build.gradle.kts @@ -0,0 +1,29 @@ +plugins { + java + id("fabric-loom") version "1.4-SNAPSHOT" +} + +version = "0.1.0" +group = "net.inyourwalls" + +repositories { + // Repositories to fetch additional dependencies from. +} + +dependencies { + // Fabric/Minecraft dependencies. + minecraft("com.mojang:minecraft:1.20.2") + mappings("net.fabricmc:yarn:1.20.2+build.4") + modImplementation("net.fabricmc:fabric-loader:0.14.24") +} + +tasks { + processResources { + inputs.property("version", project.version) + filesMatching("fabric.mod.json") { + expand(mapOf( + "version" to project.version + )) + } + } +} |
