Build: Add bintray publication for dependencies/android-dx
This commit is contained in:
+14
@@ -3,6 +3,7 @@ import java.net.URI
|
|||||||
plugins {
|
plugins {
|
||||||
base
|
base
|
||||||
`maven-publish`
|
`maven-publish`
|
||||||
|
id("com.jfrog.bintray") version "1.8.4"
|
||||||
}
|
}
|
||||||
|
|
||||||
apply(from = "../../gradle/versions.gradle.kts")
|
apply(from = "../../gradle/versions.gradle.kts")
|
||||||
@@ -108,4 +109,17 @@ publishing {
|
|||||||
url = uri("${rootProject.buildDir}/internal/repo")
|
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"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user