Use properties bintray.user & bintray.apikey for AS repo
This commit is contained in:
@@ -74,8 +74,8 @@ repositories {
|
|||||||
}
|
}
|
||||||
|
|
||||||
credentials {
|
credentials {
|
||||||
username = System.getenv("AS_BINTRAY_USER_NAME")
|
username = System.getenv("AS_BINTRAY_USER_NAME") ?: findProperty("bintray.user") as String?
|
||||||
password = System.getenv("AS_BINTRAY_API_KEY")
|
password = System.getenv("AS_BINTRAY_API_KEY") ?: findProperty("bintray.apikey") as String?
|
||||||
}
|
}
|
||||||
|
|
||||||
metadataSources {
|
metadataSources {
|
||||||
|
|||||||
Reference in New Issue
Block a user