44d9a2136b
#KT-58569 Fixed
22 lines
366 B
Kotlin
22 lines
366 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(kotlinStdlib())
|
|
testImplementation(commonDependency("junit:junit"))
|
|
testImplementation(kotlin("test"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
configureKotlinCompileTasksGradleCompatibility()
|
|
|
|
publish()
|
|
|
|
standardPublicJars()
|