From cdab00fdc89bc0a4caa0829a75adac9c17d97686 Mon Sep 17 00:00:00 2001 From: Dmitriy Novozhilov Date: Wed, 2 Sep 2020 13:34:18 +0300 Subject: [PATCH] [FIR] Remove dependency on :core:deserialization from :compiler:fir:fir-serialization --- compiler/fir/fir-serialization/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/fir/fir-serialization/build.gradle.kts b/compiler/fir/fir-serialization/build.gradle.kts index cc8a1c9caba..a8718dfa0e8 100644 --- a/compiler/fir/fir-serialization/build.gradle.kts +++ b/compiler/fir/fir-serialization/build.gradle.kts @@ -4,9 +4,9 @@ plugins { } dependencies { - implementation(project(":core:descriptors")) + implementation(project(":core:compiler.common")) + implementation(project(":core:compiler.common.jvm")) implementation(project(":compiler:fir:fir-deserialization")) - implementation(project(":core:deserialization")) api(project(":compiler:fir:cones")) api(project(":compiler:fir:tree"))