blob: 9753671a297b3b9c752f3d92687d50993bd5b930 [file] [log] [blame] [edit]
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()