bd0fe2f146
Compiler tests use the old test infrastructure, but fir2ir tests use the new one (tests-common-new). Removing this dependency means that now the two big modules, `:compiler:compileTestKotlin` and `:compiler:tests-common-new:compileTestKotlin` can be compiled in parallel, which improves the total build time.
28 lines
473 B
Kotlin
28 lines
473 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":compiler:cli"))
|
|
|
|
compileOnly(intellijCore())
|
|
|
|
testImplementation(intellijCore())
|
|
testApi(projectTests(":compiler:tests-common"))
|
|
testApi(projectTests(":compiler"))
|
|
testApi(commonDependency("junit:junit"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
testsJar()
|
|
|
|
projectTest {
|
|
workingDir = rootDir
|
|
dependsOn(":dist")
|
|
}
|