[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
@@ -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") }