Skip to content

Commit

Permalink
Change runner distribution to shadow jar
Browse files Browse the repository at this point in the history
  • Loading branch information
sagebind committed Jun 15, 2017
1 parent 6f78b19 commit 3441455
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion runner/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
apply plugin: 'application'
plugins {
id 'application'
id 'com.github.johnrengelman.shadow' version '2.0.0'
}

version '1.0.0'
mainClassName = 'com.widen.tabitha.runner.Runner'
Expand All @@ -8,3 +11,7 @@ dependencies {
compile 'commons-io:commons-io:2.5'
compile 'org.codehaus.groovy:groovy-all:2.4.1'
}

shadowJar {
classifier = null
}

0 comments on commit 3441455

Please sign in to comment.