aboutsummaryrefslogtreecommitdiff
path: root/build.gradle.kts
blob: b1676367fb6a1f21b9253d15a7efef37cde0ffc3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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)
        }
    }
}