271ecfbd68
It should be unregistered with the application by ApplicationEnvironmentDisposer which is registered in :compiler:tests-common-new
23 lines
464 B
Kotlin
23 lines
464 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":compiler:psi"))
|
|
api(project(":core:deserialization.common"))
|
|
api(project(":core:deserialization.common.jvm"))
|
|
api(project(":core:deserialization"))
|
|
implementation(project(":core:compiler.common.jvm"))
|
|
testImplementation(projectTests(":compiler:tests-common-new"))
|
|
|
|
api(intellijCore())
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|
|
|
|
|