Build: Fix artifact pattern for Android Studio bintray repo

This commit is contained in:
Vyacheslav Gerasimov
2019-07-26 19:01:53 +03:00
parent 10f5204f67
commit 2c61572c50
+7 -1
View File
@@ -67,11 +67,17 @@ repositories {
} }
ivy { ivy {
artifactPattern("https://dl.bintray.com/kotlin/as/[artifact]-[revision]-$androidStudioOs.zip") url = URI("https://dl.bintray.com/kotlin/as/")
patternLayout {
artifact("[artifact]-[revision]-$androidStudioOs.[ext]")
}
credentials { credentials {
username = System.getenv("AS_BINTRAY_USER_NAME") username = System.getenv("AS_BINTRAY_USER_NAME")
password = System.getenv("AS_BINTRAY_API_KEY") password = System.getenv("AS_BINTRAY_API_KEY")
} }
metadataSources { metadataSources {
artifact() artifact()
} }