70ed76e0bd
Review: https://jetbrains.team/p/kt/reviews/6753 This commit doesn't fix any issue except for "cleanup". If you find a mistake in this commit feel free to revert part of it/the whole commit I checked every module where I drop ':dist' dependency. Tests still pass in those modules
26 lines
374 B
Kotlin
26 lines
374 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(kotlinStdlib())
|
|
compileOnly(toolsJarApi())
|
|
|
|
testApiJUnit5()
|
|
testCompileOnly(toolsJarApi())
|
|
testRuntimeOnly(toolsJar())
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
testsJar {}
|
|
|
|
projectTest {
|
|
useJUnitPlatform()
|
|
workingDir = rootDir
|
|
}
|