92534eadaa
Replace it with a dependency on 'descriptors'. Move the existing marker interface ContractProvider to 'descriptors', and create a new marker interface DeserializedDescriptor.
16 lines
274 B
Kotlin
16 lines
274 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
compile(project(":compiler:util"))
|
|
compile(project(":core:descriptors"))
|
|
compileOnly(intellijDep()) { includeJars("trove4j") }
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|