Files
kotlin-fork/compiler/resolution/build.gradle.kts
T
Alexander Udalov 92534eadaa Remove dependency of 'resolution' on 'deserialization'
Replace it with a dependency on 'descriptors'.

Move the existing marker interface ContractProvider to 'descriptors',
and create a new marker interface DeserializedDescriptor.
2020-03-28 21:30:07 +01:00

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