diff --git a/plugins/uast-kotlin-fir/build.gradle.kts b/plugins/uast-kotlin-fir/build.gradle.kts index 6158fd7a853..1576d0f7856 100644 --- a/plugins/uast-kotlin-fir/build.gradle.kts +++ b/plugins/uast-kotlin-fir/build.gradle.kts @@ -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") } diff --git a/plugins/uast-kotlin/build.gradle.kts b/plugins/uast-kotlin/build.gradle.kts index e7c0bd90c8b..e0dcdd8a8bc 100644 --- a/plugins/uast-kotlin/build.gradle.kts +++ b/plugins/uast-kotlin/build.gradle.kts @@ -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())