From 9a2907f253fee7598836633d4fe2c03651844786 Mon Sep 17 00:00:00 2001 From: inyourwalls Date: Tue, 7 Nov 2023 18:35:00 -0500 Subject: hello, world --- build.gradle.kts | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 build.gradle.kts (limited to 'build.gradle.kts') 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 + )) + } + } +} -- cgit v1.3.1