aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorGDCloud <93287602+GDCloudstrike@users.noreply.github.com>2023-01-30 08:47:51 +0100
committerGitHub <noreply@github.com>2023-01-30 08:47:51 +0100
commit8803e0516f894a6aebb23ffea2ab419c23a06dba (patch)
treebb5cd4df7b244dc9259cc71783224f914fda9110 /build.gradle
parent4794931406c190dc9a851b99113ac792170e4750 (diff)
downloadGT5-Unofficial-8803e0516f894a6aebb23ffea2ab419c23a06dba.tar.gz
GT5-Unofficial-8803e0516f894a6aebb23ffea2ab419c23a06dba.tar.bz2
GT5-Unofficial-8803e0516f894a6aebb23ffea2ab419c23a06dba.zip
Optical Circuit recipes (#272)
* Bump Dep * Add wraps for optical parts * Raw exposed optical chip recipe * Allow mutated living solder in CAL * update bs * Fix chance not shown on NEI with culture transformation recipe (#275) (#276) Co-authored-by: miozune <miozune@gmail.com> * merge master in (#278) * Fix chance not shown on NEI with culture transformation recipe (#275) * Fix incorrect amount of Liquid DNA shown on NEI for culture synthesis recipe (#277) --------- Co-authored-by: miozune <miozune@gmail.com> * Up chip tier by 1 --------- Co-authored-by: Martin Robertz <dream-master@gmx.net> Co-authored-by: miozune <miozune@gmail.com> Former-commit-id: e1ee12ac98200eb6358f7634ddd2a0c499fe788c
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle11
1 files changed, 8 insertions, 3 deletions
diff --git a/build.gradle b/build.gradle
index 2dc32c9f20..505ad92b1a 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,4 +1,4 @@
-//version: 1673027205
+//version: 1674409054
/*
DO NOT CHANGE THIS FILE!
Also, you may replace this file at any time if there is an update available.
@@ -144,6 +144,7 @@ propertyDefaultIfUnset("modrinthProjectId", "")
propertyDefaultIfUnset("modrinthRelations", "")
propertyDefaultIfUnset("curseForgeProjectId", "")
propertyDefaultIfUnset("curseForgeRelations", "")
+propertyDefaultIfUnset("minimizeShadowedDependencies", true)
String javaSourceDir = "src/main/java/"
String scalaSourceDir = "src/main/scala/"
@@ -411,7 +412,9 @@ shadowJar {
attributes(getManifestAttributes())
}
- minimize() // This will only allow shading for actually used classes
+ if (minimizeShadowedDependencies.toBoolean()) {
+ minimize() // This will only allow shading for actually used classes
+ }
configurations = [
project.configurations.shadowImplementation,
project.configurations.shadowCompile
@@ -554,7 +557,9 @@ task shadowDevJar(type: ShadowJar) {
attributes(getManifestAttributes())
}
- minimize() // This will only allow shading for actually used classes
+ if (minimizeShadowedDependencies.toBoolean()) {
+ minimize() // This will only allow shading for actually used classes
+ }
configurations = [
project.configurations.shadowImplementation,
project.configurations.shadowCompile