7bb77e5672
This allows to replace dependency of 'util' on 'deserialization' with dependency on 'descriptors'.
16 lines
282 B
Kotlin
16 lines
282 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":core:deserialization"))
|
|
api(project(":compiler:config"))
|
|
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|