Build: Add bintray publication for dependencies/android-dx

This commit is contained in:
Vyacheslav Gerasimov
2019-05-23 22:41:52 +03:00
parent 10779ea397
commit f5825a45f7
+14
View File
@@ -3,6 +3,7 @@ import java.net.URI
plugins {
base
`maven-publish`
id("com.jfrog.bintray") version "1.8.4"
}
apply(from = "../../gradle/versions.gradle.kts")
@@ -108,4 +109,17 @@ publishing {
url = uri("${rootProject.buildDir}/internal/repo")
}
}
}
bintray {
user = extra["bintray.user"] as String
key = extra["bintray.key"] as String
setPublications("maven")
pkg.apply {
repo = "kotlin-dependencies"
name = project.name
userOrg = "kotlin"
}
}