cleaning up gradle build files, removing proguard

This commit is contained in:
Connor Tumbleson 2013-01-16 19:18:32 -06:00
parent 18ed8c1960
commit 3947b4c941
3 changed files with 20 additions and 50 deletions

View File

@ -16,12 +16,7 @@
version = apktoolversion version = apktoolversion
configurations {
proguard
}
dependencies { dependencies {
proguard 'net.sf.proguard:proguard-base:4.8'
compile project(':brut.apktool:apktool-lib') compile project(':brut.apktool:apktool-lib')
} }
@ -33,28 +28,4 @@ gradle.taskGraph.whenReady {
attributes("Main-Class": "brut.apktool.Main") attributes("Main-Class": "brut.apktool.Main")
} }
} }
} }
task proguard(type: JavaExec, dependsOn: jar) {
def outFile = jar.destinationDir.getPath() + '/' + jar.baseName + '-' + jar.version + '-small' + '.' + jar.extension
inputs.file jar.archivePath
outputs.file outFile
classpath = configurations.proguard
main = 'proguard.ProGuard'
args '-injars ' + jar.archivePath
args '-outjars ' + outFile
args '-dontobfuscate'
args '-libraryjars ' + System.properties['java.home'] + '/lib/rt.jar'
args '-dontoptimize'
args '-dontskipnonpubliclibraryclassmembers'
args '-keep public class brut.apktool.Main { public static void main(java.lang.String[]); }'
args '-keepclassmembers enum * { public static **[] values(); public static ** valueOf(java.lang.String); }'
args '-dontwarn com.google.common.base.**'
args '-dontnote com.google.common.base.**'
args '-dontwarn sun.**'
args '-dontnote sun.**'
}
tasks.getByPath(':release').dependsOn(proguard)

View File

@ -15,6 +15,6 @@
*/ */
dependencies { dependencies {
testCompile "junit:junit:3.8.1" testCompile 'junit:junit:4.8.2'
} }

View File

@ -13,14 +13,13 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
apply plugin: 'java' apply plugin: 'java'
apply plugin: 'maven' apply plugin: 'maven'
apply plugin: 'license' apply plugin: 'license'
ext.apktoolversion = '1.5.2-SNAPSHOT' ext.apktoolversion = '1.5.2-SNAPSHOT'
ext.fullrev = ''; ext.fullrev = '';
ext.gitrev_version = ''; ext.gitrev_version = '';
import org.apache.tools.ant.filters.*
repositories { repositories {
mavenCentral() mavenCentral()
@ -39,7 +38,7 @@ class Compatibility {
} }
task wrapper(type: Wrapper) { task wrapper(type: Wrapper) {
gradleVersion = '1.3' gradleVersion = '1.3'
} }
// If anyone uses this outside of GoogleCode (Apktool) developers. I will hunt you down and hurt you. // If anyone uses this outside of GoogleCode (Apktool) developers. I will hunt you down and hurt you.
@ -48,23 +47,23 @@ task release {
} }
buildscript { buildscript {
repositories { repositories {
mavenCentral() mavenCentral()
} }
dependencies { dependencies {
classpath 'nl.javadude.gradle.plugins:license-gradle-plugin:0.5.0' classpath 'nl.javadude.gradle.plugins:license-gradle-plugin:0.5.0'
} }
} }
subprojects { subprojects {
apply plugin: 'java' apply plugin: 'java'
apply plugin: 'maven' apply plugin: 'maven'
apply plugin: 'idea' apply plugin: 'idea'
repositories { repositories {
mavenCentral() mavenCentral()
} }
dependencies { dependencies {
testCompile 'junit:junit:4.8.2' testCompile 'junit:junit:4.8.2'
} }
} }