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