diff --git a/build.gradle.kts b/build.gradle.kts index 747d514a9f8..7088e8d4241 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -277,7 +277,7 @@ extra["compilerModules"] = arrayOf( ":compiler:fir:resolve", ":compiler:fir:fir-serialization", ":compiler:fir:tree", - ":compiler:fir:raw-fir:fir-common", + ":compiler:fir:raw-fir:raw-fir.common", ":compiler:fir:raw-fir:psi2fir", ":compiler:fir:raw-fir:light-tree2fir", ":compiler:fir:fir2ir", diff --git a/compiler/fir/raw-fir/light-tree2fir/build.gradle.kts b/compiler/fir/raw-fir/light-tree2fir/build.gradle.kts index 72820b94f3e..6690c7e3d38 100644 --- a/compiler/fir/raw-fir/light-tree2fir/build.gradle.kts +++ b/compiler/fir/raw-fir/light-tree2fir/build.gradle.kts @@ -15,7 +15,7 @@ repositories { } dependencies { - compile(project(":compiler:fir:raw-fir:fir-common")) + compile(project(":compiler:fir:raw-fir:raw-fir.common")) compileOnly(intellijCoreDep()) { includeJars("intellij-core", "guava", rootProject = rootProject) } diff --git a/compiler/fir/raw-fir/psi2fir/build.gradle.kts b/compiler/fir/raw-fir/psi2fir/build.gradle.kts index 62d8d21d25e..32dd00c9f03 100644 --- a/compiler/fir/raw-fir/psi2fir/build.gradle.kts +++ b/compiler/fir/raw-fir/psi2fir/build.gradle.kts @@ -9,7 +9,7 @@ plugins { } dependencies { - compile(project(":compiler:fir:raw-fir:fir-common")) + compile(project(":compiler:fir:raw-fir:raw-fir.common")) compileOnly(intellijCoreDep()) { includeJars("intellij-core", "guava", rootProject = rootProject) } @@ -39,4 +39,4 @@ projectTest(parallel = true) { workingDir = rootDir } -testsJar() \ No newline at end of file +testsJar() diff --git a/compiler/fir/raw-fir/fir-common/build.gradle.kts b/compiler/fir/raw-fir/raw-fir.common/build.gradle.kts similarity index 100% rename from compiler/fir/raw-fir/fir-common/build.gradle.kts rename to compiler/fir/raw-fir/raw-fir.common/build.gradle.kts diff --git a/compiler/fir/raw-fir/fir-common/src/org/jetbrains/kotlin/fir/builder/BaseFirBuilder.kt b/compiler/fir/raw-fir/raw-fir.common/src/org/jetbrains/kotlin/fir/builder/BaseFirBuilder.kt similarity index 100% rename from compiler/fir/raw-fir/fir-common/src/org/jetbrains/kotlin/fir/builder/BaseFirBuilder.kt rename to compiler/fir/raw-fir/raw-fir.common/src/org/jetbrains/kotlin/fir/builder/BaseFirBuilder.kt diff --git a/compiler/fir/raw-fir/fir-common/src/org/jetbrains/kotlin/fir/builder/Context.kt b/compiler/fir/raw-fir/raw-fir.common/src/org/jetbrains/kotlin/fir/builder/Context.kt similarity index 100% rename from compiler/fir/raw-fir/fir-common/src/org/jetbrains/kotlin/fir/builder/Context.kt rename to compiler/fir/raw-fir/raw-fir.common/src/org/jetbrains/kotlin/fir/builder/Context.kt diff --git a/compiler/fir/raw-fir/fir-common/src/org/jetbrains/kotlin/fir/builder/ConversionUtils.kt b/compiler/fir/raw-fir/raw-fir.common/src/org/jetbrains/kotlin/fir/builder/ConversionUtils.kt similarity index 100% rename from compiler/fir/raw-fir/fir-common/src/org/jetbrains/kotlin/fir/builder/ConversionUtils.kt rename to compiler/fir/raw-fir/raw-fir.common/src/org/jetbrains/kotlin/fir/builder/ConversionUtils.kt diff --git a/prepare/idea-plugin/build.gradle.kts b/prepare/idea-plugin/build.gradle.kts index f8681ffd1a8..19075e8aa76 100644 --- a/prepare/idea-plugin/build.gradle.kts +++ b/prepare/idea-plugin/build.gradle.kts @@ -50,7 +50,7 @@ val projectsToShadow by extra(listOf( ":compiler:fir:java", ":compiler:fir:jvm", ":compiler:fir:raw-fir:psi2fir", - ":compiler:fir:raw-fir:fir-common", + ":compiler:fir:raw-fir:raw-fir.common", ":compiler:fir:fir2ir", ":compiler:fir:fir2ir:jvm-backend", ":compiler:frontend", diff --git a/settings.gradle b/settings.gradle index 190630ba84a..9c65070dde6 100644 --- a/settings.gradle +++ b/settings.gradle @@ -300,7 +300,7 @@ include ":benchmarks", include ":compiler:fir:cones", ":compiler:fir:tree", ":compiler:fir:tree:tree-generator", - ":compiler:fir:raw-fir:fir-common", + ":compiler:fir:raw-fir:raw-fir.common", ":compiler:fir:raw-fir:psi2fir", ":compiler:fir:raw-fir:light-tree2fir", ":compiler:fir:fir2ir",