Change default values to if

Better handling of #21.

Signed-off-by: Jonas Kalderstam <jonas@kalderstam.se>
This commit is contained in:
Jonas Kalderstam 2015-05-21 00:08:06 +02:00
parent 4d3d0e6df7
commit 92038f009a
2 changed files with 2 additions and 9 deletions

View File

@ -23,8 +23,3 @@ POM_URL_ISSUES=https://github.com/spacecowboy/NoNonsense-FilePicker/issues
ANDROID_BUILD_TARGET_SDK_VERSION=21
ANDROID_BUILD_TOOLS_VERSION=22.0.1
ANDROID_BUILD_SDK_VERSION=21
# Stubs
BINTRAY_USER=stub
BINTRAY_KEY=stub

View File

@ -29,7 +29,6 @@ dependencies {
compile 'com.android.support:recyclerview-v7:22.1.1'
}
publish {
groupId = GROUP
artifactId = POM_ARTIFACT_ID
@ -38,7 +37,6 @@ publish {
website = POM_URL
licences = ['LGPL-3.0']
uploadName = PROJECT_NAME
bintrayUser = BINTRAY_USER
bintrayKey = BINTRAY_KEY
bintrayUser = project.hasProperty("BINTRAY_USER")? BINTRAY_USER: "Dummy"
bintrayKey = project.hasProperty("BINTRAY_KEY") ? BINTRAY_KEY: "Dummy"
}