Skip to content

Commit

Permalink
5.3 beta2
Browse files Browse the repository at this point in the history
  • Loading branch information
sebersole committed Feb 1, 2018
1 parent f28e037 commit 01ea48e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gradle/publishing-repos.gradle
Expand Up @@ -15,8 +15,8 @@ apply plugin: 'com.jfrog.bintray'
apply from: rootProject.file( 'gradle/publishing-pom.gradle' )

ext {
bintrayUser = project.property( 'PERSONAL_BINTRAY_USER' )
bintrayKey = project.property( 'PERSONAL_BINTRAY_API_KEY' )
bintrayUser = project.hasProperty( 'PERSONAL_BINTRAY_USER' ) ? project.property( 'PERSONAL_BINTRAY_USER' ) : null
bintrayKey = project.hasProperty( 'PERSONAL_BINTRAY_API_KEY' ) ? project.property( 'PERSONAL_BINTRAY_API_KEY' ) : null
}


Expand Down

0 comments on commit 01ea48e

Please sign in to comment.