Skip to content

Commit

Permalink
Fixed build.gradle for real this time
Browse files Browse the repository at this point in the history
  • Loading branch information
EricKuck committed Feb 29, 2016
1 parent d437b83 commit 53406dd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ subprojects {
}

bintray {
user = bintray_username
key = bintray_api_key
user = project.hasProperty('bintray_username') ? bintray_username : ''
key = project.hasProperty('bintray_api_key') ? bintray_api_key : ''
publications = ['mavenJava']

dryRun = false
Expand All @@ -101,12 +101,12 @@ subprojects {
name = project.version
gpg {
sign = true
passphrase = bintray_gpg_passphrase
passphrase = project.hasProperty('bintray_gpg_passphrase') ? bintray_gpg_passphrase : ''
}
mavenCentralSync {
sync = false
user = maven_central_username
password = maven_central_password
user = project.hasProperty('maven_central_username') ? maven_central_username : ''
password = project.hasProperty('maven_central_password') ? maven_central_password : ''
close = '1'
}
}
Expand Down

0 comments on commit 53406dd

Please sign in to comment.