FIR/UAST: clarify what module we should not depend on

This commit is contained in:
Jinseong Jeon
2021-05-07 10:07:56 -07:00
committed by Ilya Kirillov
parent e14848740a
commit bbe5cf0a70
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ dependencies {
implementation(project(":compiler:light-classes"))
implementation(project(":plugins:uast-kotlin-base"))
// BEWARE: Uast should not depend on IDEA.
// BEWARE: UAST should not depend on IJ platform so that it can work in Android Lint CLI mode (where IDE is not available)
compileOnly(intellijCoreDep()) { includeJars("intellij-core", "asm-all", rootProject = rootProject) }
compileOnly(intellijPluginDep("java")) { includeJars("java-api", "java-impl") }
+1 -1
View File
@@ -13,7 +13,7 @@ dependencies {
compile(project(":compiler:light-classes"))
compile(project(":plugins:uast-kotlin-base"))
// BEWARE: Uast should not depend on IDEA.
// BEWARE: UAST should not depend on IJ platform so that it can work in Android Lint CLI mode (where IDE is not available)
compileOnly(intellijCoreDep()) { includeJars("intellij-core", "asm-all", rootProject = rootProject) }
testCompileOnly(intellijDep())