034af78b0f
Rename raw-fir:common to raw-fir:common -> raw-fir:fir-common. If there's dependency both on :compiler:visualizer:common and :compiler:fir:raw-fir:common, only one of artifact is left in classpath
29 lines
640 B
Kotlin
29 lines
640 B
Kotlin
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() |