We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 262bbf5 commit e8bf94aCopy full SHA for e8bf94a
build.gradle
@@ -23,8 +23,8 @@ ext {
23
processorApiVersion = '1.1.0'
24
jacksonVersion = '2.11.3'
25
26
- bintrayUser = project.hasProperty ('BINTRAY_USER') ? BINTRAY_USER : 'n/a'
27
- bintrayKey = project.hasProperty ('BINTRAY_KEY') ? BINTRAY_KEY : 'n/a'
+ bintrayUser = project.findProperty ('BINTRAY_USER') ?: System.getenv ("BINTRAY_USER") ?: 'n/a'
+ bintrayKey = project.findProperty ('BINTRAY_KEY') ?: System.getenv ("BINTRAY_KEY") ?: 'n/a'
28
}
29
30
0 commit comments