Skip to content

Commit

Permalink
Merge pull request #3 from RADAR-base/release-1.0.0
Browse files Browse the repository at this point in the history
hotfix bintray publish
  • Loading branch information
yatharthranjan authored Mar 19, 2020
2 parents 3a264cc + f300282 commit fe27753
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions radar-spring-auth/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@ publishing {

bintray {
user =
(project.properties["bintrayUser"] ?: System.getenv("BINTRAY_USER"))?.toString()
(System.getenv("BINTRAY_USER") ?: project.properties["bintrayUser"])?.toString()
key =
(project.properties["bintrayApiKey"] ?: System.getenv("BINTRAY_API_KEY"))?.toString()
(System.getenv("BINTRAY_API_KEY") ?: project.properties["bintrayApiKey"])?.toString()
override = false
setPublications("mavenJar")
with(pkg) {
Expand Down Expand Up @@ -158,7 +158,6 @@ artifactory {
})
}


tasks.artifactoryPublish {
publications("mavenJar")
}
Expand Down

0 comments on commit fe27753

Please sign in to comment.