Skip to content

Instantly share code, notes, and snippets.

@emilong
Created March 18, 2015 21:53
Show Gist options
  • Save emilong/ae451ab6c0332b5392e9 to your computer and use it in GitHub Desktop.
Save emilong/ae451ab6c0332b5392e9 to your computer and use it in GitHub Desktop.
Proguard in a gradle for a pure Java project
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'net.sf.proguard:proguard-gradle:5.2'
}
}
task proguard(type: proguard.gradle.ProGuardTask) {
configuration 'myconfig.pro'
libraryjars "${System.getProperty('java.home')}/lib/rt.jar"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment