diff options
Diffstat (limited to 'build.gradle.kts')
| -rw-r--r-- | build.gradle.kts | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/build.gradle.kts b/build.gradle.kts new file mode 100644 index 0000000..b167636 --- /dev/null +++ b/build.gradle.kts @@ -0,0 +1,22 @@ +plugins { + id("net.fabricmc.fabric-loom-remap") version "1.15-SNAPSHOT" +} + +group = "net.girlonthe" +version = "0.1.0" + +dependencies { + minecraft("com.mojang:minecraft:1.21.11") + mappings(loom.officialMojangMappings()) + modImplementation("net.fabricmc:fabric-loader:0.17.3") + modImplementation(fabricApi.module("fabric-command-api-v2", "0.141.3+1.21.11")) +} + +tasks { + processResources { + inputs.property("version", project.version) + filesMatching("fabric.mod.json") { + expand("version" to project.version) + } + } +} |
