Skip to content

Commit

Permalink
Bump version, create fat jar
Browse files Browse the repository at this point in the history
  • Loading branch information
dmssargent committed Jul 30, 2018
1 parent a963b2c commit c8aa373
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'me.davidsargent'
version '0.1.4'
version '0.2.0-alpha.2'

apply plugin: 'java'
apply plugin: 'application'
Expand All @@ -15,6 +15,10 @@ jar {
manifest {
attributes("Main-Class": mainClassName)
}

from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
}

tasks.withType(AbstractArchiveTask) {
Expand Down

0 comments on commit c8aa373

Please # to comment.