Files
Exposed/exposed-jdbc/build.gradle.kts
2020-01-13 13:57:16 +03:00

32 lines
744 B
Kotlin

import tanvd.kosogor.proxy.publishJar
plugins {
kotlin("jvm") apply true
}
repositories {
jcenter()
}
dependencies {
api(project(":exposed-core"))
}
publishJar {
publication {
artifactId = "exposed-jdbc"
}
bintray {
username = project.properties["bintrayUser"]?.toString() ?: System.getenv("BINTRAY_USER")
secretKey = project.properties["bintrayApiKey"]?.toString() ?: System.getenv("BINTRAY_API_KEY")
repository = "exposed"
info {
publish = false
githubRepo = "https://github.com/JetBrains/Exposed.git"
vcsUrl = "https://github.com/JetBrains/Exposed.git"
userOrg = "kotlin"
license = "Apache-2.0"
}
}
}