[light classes] introduce light-classes-base module

^KT-53097
This commit is contained in:
Dmitry Gridin
2022-07-07 19:03:04 +02:00
committed by Space
parent d04bd320f9
commit 14590310fa
3 changed files with 20 additions and 2 deletions
@@ -0,0 +1,18 @@
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
api(project(":compiler:util"))
api(project(":compiler:frontend.common"))
api(project(":compiler:frontend.common-psi"))
api(project(":compiler:resolution.common.jvm"))
api(project(":core:compiler.common.jvm"))
compileOnly(intellijCore())
}
sourceSets {
"main" { projectDefault() }
"test" {}
}
+1 -2
View File
@@ -1,4 +1,3 @@
plugins {
kotlin("jvm")
id("jps-compatible")
@@ -9,6 +8,7 @@ dependencies {
api(project(":compiler:backend"))
api(project(":compiler:frontend"))
api(project(":compiler:frontend.java"))
api(project(":compiler:light-classes-base"))
compileOnly(intellijCore())
compileOnly(commonDependency("org.jetbrains.intellij.deps:asm-all"))
compileOnly(commonDependency("org.jetbrains.intellij.deps:trove4j"))
@@ -19,4 +19,3 @@ sourceSets {
"main" { projectDefault() }
"test" {}
}
+1
View File
@@ -145,6 +145,7 @@ include ":benchmarks",
":compiler:backend",
":compiler:plugin-api",
":compiler:light-classes",
":compiler:light-classes-base",
":compiler:javac-wrapper",
":compiler:cli",
":compiler:cli-js",