Files
kotlin-fork/compiler/daemon/daemon-tests/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

32 lines
787 B
Kotlin

description = "Kotlin Daemon Tests"
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
testImplementation(kotlinStdlib())
testImplementation(project(":kotlin-test:kotlin-test-jvm"))
testImplementation(project(":kotlin-daemon"))
testImplementation(project(":kotlin-daemon-client"))
testImplementation(libs.junit4)
testImplementation(projectTests(":compiler:tests-common"))
testImplementation(intellijCore())
}
sourceSets {
"main" {}
"test" { projectDefault() }
}
projectTest(parallel = true) {
dependsOn(":dist")
workingDir = rootDir
val testClassesDirs = testSourceSet.output.classesDirs
doFirst {
systemProperty("kotlin.test.script.classpath", testClassesDirs.joinToString(File.pathSeparator))
}
}