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 c1f0b7a commit 5b7e57cCopy full SHA for 5b7e57c
build.gradle
@@ -182,8 +182,8 @@ artifactory {
182
repository {
183
repoKey = 'oss-snapshot-local'
184
185
- username = System.getProperty('BINTRAY_USER')
186
- password = System.getProperty('BINTRAY_PASS')
+ username = System.env.BINTRAY_USER ?: System.getProperty('BINTRAY_USER')
+ password = System.env.BINTRAY_PASS ?: System.getProperty('BINTRAY_PASS')
187
188
maven = true
189
}
0 commit comments