blob: 8cc0b7898b197b586fd8f49c565abe9549373559 [file] [log] [blame] [edit]
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
testRuntime(intellijDep())
testCompile(intellijCoreDep()) { includeJars("intellij-core") }
testCompileOnly(project(":compiler:fir:raw-fir:psi2fir"))
testCompileOnly(project(":compiler:visualizer:render-psi"))
testCompileOnly(project(":compiler:visualizer:render-fir"))
testCompile(commonDep("junit:junit"))
testCompile(projectTests(":compiler:tests-common"))
testCompile(projectTests(":compiler:fir:analysis-tests"))
}
sourceSets {
"main" {}
"test" { projectDefault() }
}
projectTest {
workingDir = rootDir
}
testsJar()