Skip to content

Commit

Permalink
Uploads fat jar to bintray
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Dougal authored and chuckydev committed Sep 25, 2017
1 parent 3718c45 commit 4e7d472
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ clean.doFirst {
bintray {
user = project.property('openSourceRepoUser')
key = project.property('openSourceRepoPass')
publications = ['artifacts']
publications = ['artifacts', 'shadow']
pkg {
userOrg = 'sky-uk'
repo = 'oss-maven'
Expand All @@ -56,9 +56,17 @@ publishing {
artifact sourcesJar
artifact javadocJar
}
shadow(MavenPublication) {
from components.java
artifact shadowJar
}
}
}

shadowJar {
classifier = 'with-dependencies'
}

repositories {
mavenCentral()
}
Expand Down

0 comments on commit 4e7d472

Please sign in to comment.