aboutsummaryrefslogtreecommitdiff
path: root/build.gradle.kts
diff options
context:
space:
mode:
authorRosa <rosaontheweb@proton.me>2026-03-12 18:01:50 -0400
committerRosa <rosaontheweb@proton.me>2026-03-12 18:01:50 -0400
commit5c8ae483654291cb4e5077e47e0d5854c2efd2a3 (patch)
treee258c367023e155a6e01bcf9fd342ee934ebc3c9 /build.gradle.kts
init
Diffstat (limited to '')
-rw-r--r--build.gradle.kts22
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)
+ }
+ }
+}