f7a9065b75
#KTI-82
25 lines
568 B
Kotlin
25 lines
568 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(project(":compiler:fir:entrypoint"))
|
|
testImplementation(project(":compiler:cli"))
|
|
testImplementation(intellijCore())
|
|
|
|
testCompileOnly(project(":kotlin-reflect-api"))
|
|
testRuntimeOnly(project(":kotlin-reflect"))
|
|
testRuntimeOnly(project(":core:descriptors.runtime"))
|
|
|
|
// This dependency is needed only for FileComparisonFailure
|
|
testImplementation(intellijJavaRt())
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { none() }
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
testsJar()
|