generated from txnimc/TxniTemplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstonecutter.gradle.kts
40 lines (33 loc) · 1.28 KB
/
stonecutter.gradle.kts
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
plugins {
id("dev.kikugie.stonecutter")
kotlin("jvm") version "2.0.0" apply false
kotlin("plugin.serialization") version "2.0.0" apply false
id("co.uzzu.dotenv.gradle") version "4.0.0"
id("dev.architectury.loom") version "1.7-SNAPSHOT" apply false
id("me.modmuss50.mod-publish-plugin") version "0.7.4" apply false
id("systems.manifold.manifold-gradle-plugin") version "0.0.2-alpha" apply false
}
stonecutter active "1.21.1-fabric" /* [SC] DO NOT EDIT */
stonecutter registerChiseled tasks.register("chiseledBuild", stonecutter.chiseled) {
group = "project"
ofTask("build")
}
stonecutter registerChiseled tasks.register("chiseledBuildAndCollect", stonecutter.chiseled) {
group = "project"
ofTask("buildAndCollect")
}
stonecutter registerChiseled tasks.register("chiseledPublishMods", stonecutter.chiseled) {
group = "project"
ofTask("publishMods")
}
stonecutter registerChiseled tasks.register("chiseledBuildAndCopyToModrinth", stonecutter.chiseled) {
group = "project"
ofTask("buildAndCopyToModrinth")
}
stonecutter registerChiseled tasks.register("chiseledPublishMaven", stonecutter.chiseled) {
group = "project"
ofTask("publish")
}
stonecutter.exclude("*.ttf")
stonecutter.exclude("*.otf")
stonecutter.automaticPlatformConstants = true