Introduce new modules for common jvm related parts of compiler

This commit is contained in:
Dmitriy Novozhilov
2020-08-31 14:57:03 +03:00
parent dd016b759e
commit 564d382b9d
9 changed files with 47 additions and 0 deletions
@@ -0,0 +1,15 @@
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
api(project(":compiler:resolution.common"))
api(project(":core:compiler.common.jvm"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
}
sourceSets {
"main" { projectDefault() }
"test" {}
}