Files
kotlin-fork/libraries/tools/kotlin-tooling-metadata/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

17 lines
313 B
Kotlin

plugins {
java
kotlin("jvm")
id("jps-compatible")
}
publish()
sourcesJar()
javadocJar()
configureKotlinCompileTasksGradleCompatibility()
dependencies {
implementation(kotlinStdlib())
implementation(commonDependency("com.google.code.gson:gson"))
testImplementation(kotlinTest("junit"))
}