aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorDianeXD <64360468+DianeXD@users.noreply.github.com>2022-10-22 17:35:17 +0800
committerGitHub <noreply@github.com>2022-10-22 11:35:17 +0200
commite9ecca3f1aba7ef7ea5eaaea8b0baf8d1e7659c8 (patch)
treeed042648ac7298dfe4076663e8f84fb5b5b737b6 /build.gradle
parentcd73c5e12bc75bb78b5ec0c956dd0b8146a44a4e (diff)
downloadGT5-Unofficial-e9ecca3f1aba7ef7ea5eaaea8b0baf8d1e7659c8.tar.gz
GT5-Unofficial-e9ecca3f1aba7ef7ea5eaaea8b0baf8d1e7659c8.tar.bz2
GT5-Unofficial-e9ecca3f1aba7ef7ea5eaaea8b0baf8d1e7659c8.zip
Remove convert gendustry bees code (#1187)
* Remove convert gendustry bees code * fix derp. run BS update Co-authored-by: Martin Robertz <dream-master@gmx.net>
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle8
1 files changed, 7 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle
index bf14610c41..bc7fcfd33f 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,4 +1,4 @@
-//version: 1665425597
+//version: 1666118075
/*
DO NOT CHANGE THIS FILE!
Also, you may replace this file at any time if there is an update available.
@@ -693,6 +693,9 @@ if (modrinthProjectId.size() != 0 && System.getenv("MODRINTH_TOKEN") != null) {
addModrinthDep(qual[0], qual[1], parts[1])
}
}
+ if (usesMixins.toBoolean()) {
+ addModrinthDep("required", "version", "gtnhmixins")
+ }
tasks.modrinth.dependsOn(build)
tasks.publish.dependsOn(tasks.modrinth)
}
@@ -734,6 +737,9 @@ if (curseForgeProjectId.size() != 0 && System.getenv("CURSEFORGE_TOKEN") != null
addCurseForgeRelation(parts[0], parts[1])
}
}
+ if (usesMixins.toBoolean()) {
+ addCurseForgeRelation("requiredDependency", "gtnhmixins")
+ }
tasks.curseforge.dependsOn(build)
tasks.publish.dependsOn(tasks.curseforge)
}