d2aae67e03
Use dependency helper function that chooses whether to take them from the bootstrap repository or from a configuration of kotlin-test KT-61969
17 lines
313 B
Kotlin
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"))
|
|
}
|