Files
kotlin-fork/compiler/fir/resolve/build.gradle.kts
T
2021-02-19 07:20:06 +00:00

26 lines
612 B
Kotlin

plugins {
kotlin("jvm")
id("jps-compatible")
}
repositories {
maven(url = "https://dl.bintray.com/kotlin/kotlinx")
}
dependencies {
api(project(":core:compiler.common"))
api(project(":compiler:resolution.common"))
api(project(":compiler:fir:cones"))
api(project(":compiler:fir:tree"))
api(kotlinxCollectionsImmutable())
implementation(project(":core:util.runtime"))
compileOnly(project(":kotlin-reflect-api"))
compileOnly(intellijCoreDep()) { includeJars("guava", rootProject = rootProject) }
}
sourceSets {
"main" { projectDefault() }
"test" { none() }
}