[FE] Create special module for common frontent parts which uses PSI

This commit is contained in:
Dmitriy Novozhilov
2021-09-08 17:04:35 +03:00
committed by TeamCityServer
parent ddc6c70611
commit 793209e72f
5 changed files with 18 additions and 0 deletions
+1
View File
@@ -182,6 +182,7 @@ extra["compilerModules"] = arrayOf(
":compiler:psi",
":compiler:frontend",
":compiler:frontend.common",
":compiler:frontend.common-psi",
":compiler:frontend.java",
":compiler:frontend:cfg",
":compiler:cli-common",
@@ -0,0 +1,15 @@
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
api(project(":compiler:frontend.common"))
api(project(":compiler:psi"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
}
sourceSets {
"main" { projectDefault() }
"test" {}
}
+1
View File
@@ -13,6 +13,7 @@ dependencies {
compile(project(":compiler:resolution"))
compile(project(":compiler:psi"))
compile(project(":compiler:frontend.common"))
compile(project(":compiler:frontend.common-psi"))
compile(project(":kotlin-script-runtime"))
compile(commonDep("io.javaslang","javaslang"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
+1
View File
@@ -97,6 +97,7 @@ include ":benchmarks",
":compiler:visualizer:render-psi",
":compiler:frontend",
":compiler:frontend.common",
":compiler:frontend.common-psi",
":compiler:frontend.java",
":compiler:frontend:cfg",
":kotlin-compiler-runner",