Skip to content

Instantly share code, notes, and snippets.

@algobardo
Last active August 29, 2015 14:14
Show Gist options
  • Select an option

  • Save algobardo/89a52a836fbb2b4e5f93 to your computer and use it in GitHub Desktop.

Select an option

Save algobardo/89a52a836fbb2b4e5f93 to your computer and use it in GitHub Desktop.

Revisions

  1. algobardo revised this gist Jan 29, 2015. 1 changed file with 9 additions and 0 deletions.
    9 changes: 9 additions & 0 deletions gistfile1.txt
    Original 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'


  2. algobardo created this gist Jan 29, 2015.
    26 changes: 26 additions & 0 deletions gistfile1.txt
    Original 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
    }