5.3 beta2

This commit is contained in:
Steve Ebersole 2018-02-01 14:12:40 -06:00
parent f28e037a58
commit 01ea48e68b
1 changed files with 2 additions and 2 deletions

View File

@ -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
}