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) } } }