Files
kotlin-fork/compiler/util-io/build.gradle.kts
T
Alexander.Likhachev 357d12fc8e [Build] Move JUnit dependencies into the version catalog
The `kotlin-test` dependencies are left untouched as changing them affects publications, thus these versions are independent from the used inside our build
#KTI-1349 In Progress
2023-09-06 22:47:33 +00:00

22 lines
346 B
Kotlin

plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
implementation(kotlinStdlib())
testImplementation(libs.junit4)
testImplementation(kotlin("test"))
}
sourceSets {
"main" { projectDefault() }
"test" { projectDefault() }
}
configureKotlinCompileTasksGradleCompatibility()
publish()
standardPublicJars()