blob: 219b7bfa7a451dd44a9220df9c519b15b5559ae2 [file] [log] [blame] [edit]
plugins {
kotlin("jvm")
id("jps-compatible")
id("java-test-fixtures")
}
dependencies {
testFixturesImplementation(project(":compiler:fir:entrypoint"))
testFixturesImplementation(project(":compiler:cli"))
testFixturesImplementation(intellijCore())
testFixturesImplementation(commonDependency("org.jetbrains.kotlin:kotlin-reflect")) { isTransitive = false }
}
sourceSets {
"main" { none() }
"test" { none() }
"testFixtures" { projectDefault() }
}
testsJar()