Last active
August 29, 2015 14:14
-
-
Save algobardo/89a52a836fbb2b4e5f93 to your computer and use it in GitHub Desktop.
Revisions
-
algobardo revised this gist
Jan 29, 2015 . 1 changed file with 9 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,12 @@ buildscript { repositories { mavenCentral() } dependencies { classpath 'com.github.rholder:gradle-one-jar:1.0.4' } } apply plugin: 'maven' -
algobardo created this gist
Jan 29, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,26 @@ apply plugin: 'maven' mainClassName = "dk.au.cs.thor.entry" group = "dk.au.cs.thor" version = "1.0.0" status = "release" description = "Instrumentation for Android tests" install { repositories.mavenInstaller { pom.version = project.version pom.artifactId = "SootInstrumentation" } } apply plugin: 'gradle-one-jar' task fullJar(type: OneJar) { mainClass = 'dk.au.cs.thor.entry' } artifacts { archives fullJar }