diff --git a/compiler/ir/ir.tree/build.gradle.kts b/compiler/ir/ir.tree/build.gradle.kts index 85c902645a9..d4dc177dc4c 100644 --- a/compiler/ir/ir.tree/build.gradle.kts +++ b/compiler/ir/ir.tree/build.gradle.kts @@ -1,16 +1,19 @@ - plugins { kotlin("jvm") id("jps-compatible") } dependencies { - compile(project(":compiler:util")) - compile(project(":compiler:frontend")) + api(project(":core:descriptors")) + api(project(":core:deserialization")) + api(project(":compiler:frontend.common")) + implementation(project(":compiler:util")) + implementation(project(":compiler:config")) + compileOnly(intellijCoreDep()) { includeJars("intellij-core") } } sourceSets { "main" { projectDefault() } "test" {} -} \ No newline at end of file +}