0874fb71c6
Review: https://jetbrains.team/p/kt/reviews/6753 Why: I'm going to replace source dependency on kotlin-reflect with binary dependency. Normalize reflect dependency before global processing.
30 lines
985 B
Kotlin
30 lines
985 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
id("java-test-fixtures")
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(kotlinStdlib())
|
|
testApi(projectTests(":compiler:cli"))
|
|
testApi(projectTests(":generators:test-generator"))
|
|
testApi(testFixtures(project(":kotlin-project-model")))
|
|
testApi(project(":kotlin-project-model"))
|
|
testApi(projectTests(":kotlin-gradle-plugin-integration-tests"))
|
|
testCompileOnly(project(":kotlin-reflect"))
|
|
testImplementation(project(":kotlin-reflect"))
|
|
testImplementation(projectTests(":compiler:test-infrastructure-utils"))
|
|
testImplementation(projectTests(":compiler:test-infrastructure"))
|
|
testImplementation(projectTests(":compiler:tests-common-new"))
|
|
testImplementation(projectTests(":js:js.tests"))
|
|
testApiJUnit5()
|
|
|
|
if (Ide.IJ()) {
|
|
testCompileOnly(jpsBuildTest())
|
|
testApi(jpsBuildTest())
|
|
}
|
|
}
|
|
|
|
val generateKpmTests by generator("org.jetbrains.kotlin.kpm.GenerateKpmTestsKt") {
|
|
}
|