We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d62059 commit ea5c79eCopy full SHA for ea5c79e
1 file changed
build.gradle
@@ -11,8 +11,8 @@ version '1.0.0.B1'
11
sourceCompatibility = 1.8
12
13
ext {
14
- bintrayUser = BINTRAY_USER ?: 'n/a'
15
- bintrayKey = BINTRAY_KEY ?: 'n/a'
+ bintrayUser = System.getenv ('BINTRAY_USER') ? BINTRAY_USER : 'n/a'
+ bintrayKey = System.getenv ('BINTRAY_KEY') ? BINTRAY_KEY : 'n/a'
16
}
17
18
repositories {
0 commit comments