attempts to get jarJar working

This commit is contained in:
Ell 2023-07-08 11:33:12 +02:00
parent 0e7c9cb3f7
commit ea7c6d7c7f

View file

@ -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'