From ea7c6d7c7f3388d7bbf6ba91850510a40a7e8887 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Sat, 8 Jul 2023 11:33:12 +0200 Subject: [PATCH] attempts to get jarJar working --- build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.gradle b/build.gradle index 78ee5bc..bccb148 100644 --- a/build.gradle +++ b/build.gradle @@ -202,6 +202,10 @@ tasks.named('jar', Jar).configure { finalizedBy 'reobfJar' } +tasks.named('jarJar', Jar).configure { + finalizedBy 'reobfJarJar' +} + // However if you are in a multi-project build, dev time needs unobfed jar files, so you can delay the obfuscation until publishing by doing: // tasks.named('publish').configure { // dependsOn 'reobfJar'