From 50ad5027fef43012c0f3fd3ccefdd5832e7955c3 Mon Sep 17 00:00:00 2001 From: Vyacheslav Gerasimov Date: Sun, 27 Nov 2022 19:56:39 +0100 Subject: [PATCH] Build: Fix kotlin-annotation-processing pom dependencies #KTI-878 --- plugins/kapt3/kapt3-compiler/build.gradle.kts | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/plugins/kapt3/kapt3-compiler/build.gradle.kts b/plugins/kapt3/kapt3-compiler/build.gradle.kts index 9a98cae7c53..8fa3bc5950a 100644 --- a/plugins/kapt3/kapt3-compiler/build.gradle.kts +++ b/plugins/kapt3/kapt3-compiler/build.gradle.kts @@ -7,19 +7,18 @@ plugins { } dependencies { - api(project(":compiler:util")) - api(project(":compiler:cli")) - api(project(":compiler:backend")) - api(project(":compiler:frontend")) - api(project(":compiler:frontend.java")) - api(project(":compiler:plugin-api")) - implementation(project(":compiler:backend.jvm.entrypoint")) - - compileOnly(toolsJarApi()) + compileOnly(project(":compiler:util")) + compileOnly(project(":compiler:cli")) + compileOnly(project(":compiler:backend")) + compileOnly(project(":compiler:backend.jvm.entrypoint")) + compileOnly(project(":compiler:frontend")) + compileOnly(project(":compiler:frontend.java")) + compileOnly(project(":compiler:plugin-api")) compileOnly(project(":kotlin-annotation-processing-cli")) compileOnly(project(":kotlin-annotation-processing-base")) compileOnly(project(":kotlin-annotation-processing-runtime")) compileOnly(intellijCore()) + compileOnly(toolsJarApi()) compileOnly(commonDependency("org.jetbrains.intellij.deps:asm-all")) testImplementation(intellijCore())