mirror of
https://github.com/jlengrand/Exposed.git
synced 2026-03-10 08:11:20 +00:00
32 lines
744 B
Kotlin
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"
|
|
}
|
|
}
|
|
} |