d2aae67e03
Use dependency helper function that chooses whether to take them from the bootstrap repository or from a configuration of kotlin-test KT-61969
22 lines
441 B
Kotlin
22 lines
441 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
id("org.jetbrains.kotlinx.binary-compatibility-validator")
|
|
}
|
|
|
|
publish()
|
|
sourcesJar()
|
|
javadocJar()
|
|
configureKotlinCompileTasksGradleCompatibility()
|
|
|
|
dependencies {
|
|
api(platform(project(":kotlin-gradle-plugins-bom")))
|
|
compileOnly(kotlinStdlib())
|
|
testImplementation(kotlinTest("junit"))
|
|
}
|
|
|
|
tasks {
|
|
apiBuild {
|
|
inputJar.value(jar.flatMap { it.archiveFile })
|
|
}
|
|
} |