From 2d1e0699f290afaf9430ff446e0c60bed4e5be1a Mon Sep 17 00:00:00 2001 From: Rosa Date: Tue, 10 Mar 2026 22:23:19 -0400 Subject: init --- build.gradle.kts | 23 +++++++++++++++++++++++ 1 file changed, 23 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..83b4747 --- /dev/null +++ b/build.gradle.kts @@ -0,0 +1,23 @@ +plugins { + id("net.fabricmc.fabric-loom-remap") version "1.15-SNAPSHOT" +} + +group = "net.girlonthe" +version = "0.1.0" + +dependencies { + val minecraftVersion = "1.21.11" + 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") +} + +tasks { + processResources { + inputs.property("version", project.version) + filesMatching("fabric.mod.json") { + expand(mapOf("version" to project.version)) + } + } +} -- cgit v1.3.1