Skip to content

Commit

Permalink
Upgrade bintray plugin; automatically publish bintray artifacts (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
uschi2000 committed May 19, 2016
1 parent ca5e73b commit 673ef1f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
}

dependencies {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.4'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6'
classpath 'com.gradle.publish:plugin-publish-plugin:0.9.1'
classpath 'com.palantir:gradle-flexversion:0.7.0'
}
Expand Down
15 changes: 8 additions & 7 deletions gradle-baseline-java-config/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ bintrayUpload.dependsOn { zipConfig }
bintray {
user = System.getenv('BINTRAY_USER')
key = System.getenv('BINTRAY_KEY')
publish = true
pkg {
repo = 'releases'
name = 'gradle-baseline'
Expand All @@ -26,11 +27,11 @@ bintray {
}

publishing {
publications {
ConfigPublication(MavenPublication) {
artifact(zipConfig) {
extension 'zip'
}
}
}
publications {
ConfigPublication(MavenPublication) {
artifact(zipConfig) {
extension 'zip'
}
}
}
}
1 change: 1 addition & 0 deletions gradle-baseline-java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ bintrayUpload.dependsOn { sourceJar }
bintray {
user = System.getenv('BINTRAY_USER')
key = System.getenv('BINTRAY_KEY')
publish = true
pkg {
repo = 'releases'
name = 'gradle-baseline'
Expand Down

0 comments on commit 673ef1f

Please sign in to comment.