Files
kotlin-fork/analysis/decompiled/decompiler-to-stubs/build.gradle.kts
T
Ilya Kirillov 271ecfbd68 [Analysis] Try to fix randomly failing tests because of unregistered FileAttributeService
It should be unregistered with the application by ApplicationEnvironmentDisposer
which is registered in :compiler:tests-common-new
2022-07-01 11:33:21 +02:00

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" {}
}