Files
kotlin-fork/compiler/util/build.gradle.kts
T
Alexander Udalov 8be23df668 Remove unneeded dependency of util on deserialization & reflect
This is probably a result of a somewhat incorrectly merged
6c37574fce.
2020-10-29 17:03:11 +01:00

22 lines
481 B
Kotlin

plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
api(kotlinStdlib())
api(project(":compiler:compiler.version"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
compileOnly(intellijDep()) { includeIntellijCoreJarDependencies(project) }
compileOnly(jpsStandalone()) { includeJars("jps-model") }
}
sourceSets {
"main" {
projectDefault()
resources.srcDir(File(rootDir, "resources"))
}
"test" {}
}