blob: 7e09a5c82efefb1026aab293e505dd9c3c15d5fb [file] [log] [blame] [edit]
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
testApi(project(":compiler:fir:entrypoint"))
testApi(project(":compiler:cli"))
testApi(intellijCore())
testRuntimeOnly(project(":core:descriptors.runtime"))
testImplementation(projectTests(":compiler:test-infrastructure-utils"))
testRuntimeOnly(commonDependency("org.jetbrains.intellij.deps.jna:jna"))
}
optInToExperimentalCompilerApi()
sourceSets {
"main" { none() }
"test" { projectDefault() }
}
testsJar()