-
-
Save denzuko/feec5da65847d0b8c876aeaa4af9c85e to your computer and use it in GitHub Desktop.
Obfuscate a jar with Gradle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ext { | |
| mainClassName = "foo.bar.buz.mainClass" | |
| basename = "fooBar" | |
| version = "42.0" | |
| } | |
| task obfuscate(type: proguard.gradle.ProGuardTask) { | |
| injars "./build/libs/${basename}-${version}.jar" | |
| outjars "./build/libs/${basename}-${version}-obf.jar" | |
| libraryjars "${System.getProperty('java.home')}/lib/rt.jar" | |
| dontwarn | |
| overloadaggressively | |
| repackageclasses 'foo' | |
| printmapping "./build/libs/${basename}.map" | |
| keep 'class !foo.bar.buz**,!foo.bar.baz.** { *; }' | |
| keepclasseswithmembers "public class ${mainClassName} { \ | |
| public static void main(java.lang.String[]); \ | |
| }" | |
| keepclassmembers allowshrinking:true, 'enum * { \ | |
| public static **[] values(); \ | |
| static boolean contains(java.lang.String); \ | |
| }' | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment