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