Use properties bintray.user & bintray.apikey for AS repo

This commit is contained in:
Vyacheslav Gerasimov
2019-07-31 16:45:47 +03:00
parent 645bbc93cb
commit 67b84cf35d
+2 -2
View File
@@ -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 {