Maven plugin for obfuscating Java code

Is there a maven plugin for obfuscating Java code (Java SE, Java EE or Android)?

+5
source share
2 answers

I only have googled "java obfuscator maven plugin" and found many links, including this one: http://pyx4me.com/pyx4me-maven-plugins/proguard-maven-plugin/

I think you should choose an obfuscator that suits your needs first. If there is no maven plugin that wraps this obfuscator, run it from maven pom.xml via the command line.

+1
source

proguard-maven-plugin is the tool you want. See the link for details.

+1
source

All Articles