diff options
author | Martin Robertz <dream-master@gmx.net> | 2023-01-06 19:00:15 +0100 |
---|---|---|
committer | Martin Robertz <dream-master@gmx.net> | 2023-01-06 19:00:15 +0100 |
commit | 13708a6a8e748dec75b991bdc68e49339a6817c0 (patch) | |
tree | 473ce2094b5c7902b1f19237cc639d368bb34c97 /build.gradle | |
parent | 8bb2dee62c091218f622b1296c7aa4ab33bdd24d (diff) | |
download | GT5-Unofficial-13708a6a8e748dec75b991bdc68e49339a6817c0.tar.gz GT5-Unofficial-13708a6a8e748dec75b991bdc68e49339a6817c0.tar.bz2 GT5-Unofficial-13708a6a8e748dec75b991bdc68e49339a6817c0.zip |
update BS
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/build.gradle b/build.gradle index 9ceb5abe8c..bab3a3d8dc 100644 --- a/build.gradle +++ b/build.gradle @@ -1,4 +1,4 @@ -//version: 1671313514 +//version: 1673027205 /* DO NOT CHANGE THIS FILE! Also, you may replace this file at any time if there is an update available. @@ -319,9 +319,17 @@ if (file('addon.gradle').exists()) { apply from: 'repositories.gradle' configurations { - implementation.extendsFrom(shadowImplementation) // TODO: remove after all uses are refactored - implementation.extendsFrom(shadowCompile) - implementation.extendsFrom(shadeCompile) + // TODO: remove Compile after all uses are refactored to Implementation + for (config in [ + shadowImplementation, + shadowCompile, + shadeCompile + ]) { + compileClasspath.extendsFrom(config) + runtimeClasspath.extendsFrom(config) + testCompileClasspath.extendsFrom(config) + testRuntimeClasspath.extendsFrom(config) + } } repositories { @@ -350,7 +358,8 @@ dependencies { annotationProcessor('com.google.code.gson:gson:2.8.6') annotationProcessor('com.gtnewhorizon:gtnhmixins:2.1.3:processor') if (usesMixinDebug.toBoolean()) { - runtimeOnly('org.jetbrains:intellij-fernflower:1.2.1.16') + runtimeClasspath('org.jetbrains:intellij-fernflower:1.2.1.16') + testRuntimeClasspath('org.jetbrains:intellij-fernflower:1.2.1.16') } } if (usesMixins.toBoolean() || forceEnableMixins.toBoolean()) { |