generated from FabricMC/fabric-example-mod
-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathstonecutter.gradle
27 lines (21 loc) · 846 Bytes
/
stonecutter.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
plugins {
id "dev.kikugie.stonecutter"
id "com.modrinth.minotaur" version "2.+" apply false
id "dev.architectury.loom" version "1.7-SNAPSHOT" apply false
id "architectury-plugin" version "3.4-SNAPSHOT" apply false
id "com.github.johnrengelman.shadow" version "8.1.1" apply false
}
apply from: 'common.gradle'
stonecutter.active "1.21.4-fabric" /* [SC] DO NOT EDIT */
// Chiseled tasks run for every version in their own "instance", in the respective versions/ subdirs
stonecutter.registerChiseled tasks.register("chiseledBuild", stonecutter.chiseled) {
setGroup "project"
ofTask "build"
}
stonecutter.registerChiseled tasks.register("chiseledModrinth", stonecutter.chiseled) {
setGroup "project"
ofTask "modrinth"
doLast {
new File(rootProject.relativePath("changelog.txt")).delete()
}
}