diff options
author | Maxim <maxim235@gmx.de> | 2023-01-12 18:53:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-12 18:53:22 +0100 |
commit | 8806e6231083e0099a1fd569a9b76a605d50c247 (patch) | |
tree | dd415de076bd90636cb2aae2ff30a5f544eee83c /build.gradle | |
parent | 3a123c3eb03e799a41b0c5c6afc74b9b3715c825 (diff) | |
download | GT5-Unofficial-8806e6231083e0099a1fd569a9b76a605d50c247.tar.gz GT5-Unofficial-8806e6231083e0099a1fd569a9b76a605d50c247.tar.bz2 GT5-Unofficial-8806e6231083e0099a1fd569a9b76a605d50c247.zip |
Implement working amps to remove the hack (#494)
* Implement working amps to remove the hack
* Use long base function instead of helper
* Updated dep
* Also yeet hack from QFT
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/build.gradle b/build.gradle index fa88ae1be7..2dc32c9f20 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. @@ -46,7 +46,7 @@ buildscript { } dependencies { //Overwrite the current ASM version to fix shading newer than java 8 applicatations. - classpath 'org.ow2.asm:asm-debug-all-custom:5.0.3' + classpath 'org.ow2.asm:asm-debug-all-custom:5.0.3' classpath 'net.minecraftforge.gradle:ForgeGradle:1.2.13' } } @@ -319,9 +319,13 @@ 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 +354,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()) { |