We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c116bc6 commit 7c556a3Copy full SHA for 7c556a3
build.gradle
@@ -11,8 +11,8 @@ version '1.0.0.B2'
11
sourceCompatibility = 1.8
12
13
ext {
14
- bintrayUser = System.getenv ('BINTRAY_USER') ? BINTRAY_USER : 'n/a'
15
- bintrayKey = System.getenv ('BINTRAY_KEY') ? BINTRAY_KEY : 'n/a'
+ bintrayUser = project.hasProperty ('BINTRAY_USER') ? BINTRAY_USER : 'n/a'
+ bintrayKey = project.hasProperty ('BINTRAY_KEY') ? BINTRAY_KEY : 'n/a'
16
}
17
18
repositories {
0 commit comments