Files
kotlin-fork/libraries/tools/kotlin-tooling-core/build.gradle.kts
T
Ilya Gorbunov d2aae67e03 Replace kotlin-test project dependencies in the project
Use dependency helper function that chooses whether to take them
from the bootstrap repository or from a configuration of kotlin-test

KT-61969
2023-12-13 15:40:25 +00:00

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 })
}
}