File tree 6 files changed +11
-29
lines changed
6 files changed +11
-29
lines changed Original file line number Diff line number Diff line change 2
2
* Copyright 2023-2025 JetBrains s.r.o and contributors. Use of this source code is governed by the Apache 2.0 license.
3
3
*/
4
4
5
- import util.otherwise
6
5
import util.whenForIde
7
6
8
7
plugins {
@@ -16,10 +15,11 @@ val kotlinLangVersion = libs.versions.kotlin.lang.get()
16
15
17
16
allprojects {
18
17
group = " org.jetbrains.kotlinx"
19
- whenForIde {
20
- version = " $kotlinCompilerVersion -$rpcVersion "
21
- } otherwise {
22
- version = " $kotlinLangVersion -$rpcVersion "
18
+
19
+ version = if (kotlinCompilerVersion != kotlinLangVersion) {
20
+ " $kotlinCompilerVersion -$rpcVersion "
21
+ } else {
22
+ " $kotlinLangVersion -$rpcVersion "
23
23
}
24
24
}
25
25
Original file line number Diff line number Diff line change 3
3
*/
4
4
5
5
import org.jetbrains.kotlin.gradle.dsl.ExplicitApiMode
6
- import util.otherwise
7
- import util.whenForIde
8
6
9
7
plugins {
10
8
alias(libs.plugins.conventions.jvm)
@@ -20,11 +18,7 @@ kotlin {
20
18
}
21
19
22
20
dependencies {
23
- whenForIde {
24
- compileOnly(libs.kotlin.compiler)
25
- } otherwise {
26
- compileOnly(libs.kotlin.compiler.embeddable)
27
- }
21
+ compileOnly(libs.kotlin.compiler)
28
22
29
23
implementation(projects.compilerPluginCommon)
30
24
}
Original file line number Diff line number Diff line change 3
3
*/
4
4
5
5
import org.jetbrains.kotlin.gradle.dsl.ExplicitApiMode
6
- import util.otherwise
7
- import util.whenForIde
8
6
9
7
plugins {
10
8
alias(libs.plugins.conventions.jvm)
@@ -16,11 +14,7 @@ kotlin {
16
14
}
17
15
18
16
dependencies {
19
- whenForIde {
20
- compileOnly(libs.kotlin.compiler)
21
- } otherwise {
22
- compileOnly(libs.kotlin.compiler.embeddable)
23
- }
17
+ compileOnly(libs.kotlin.compiler)
24
18
25
19
implementation(projects.compilerPluginK2)
26
20
implementation(projects.compilerPluginCommon)
Original file line number Diff line number Diff line change 3
3
*/
4
4
5
5
import org.jetbrains.kotlin.gradle.dsl.ExplicitApiMode
6
- import util.otherwise
7
- import util.whenForIde
8
6
9
7
plugins {
10
8
alias(libs.plugins.conventions.jvm)
@@ -16,9 +14,5 @@ kotlin {
16
14
}
17
15
18
16
dependencies {
19
- whenForIde {
20
- compileOnly(libs.kotlin.compiler)
21
- } otherwise {
22
- compileOnly(libs.kotlin.compiler.embeddable)
23
- }
17
+ compileOnly(libs.kotlin.compiler)
24
18
}
Original file line number Diff line number Diff line change @@ -72,14 +72,15 @@ kotlin {
72
72
}
73
73
74
74
dependencies {
75
+ compileOnly(libs.kotlin.compiler)
76
+
75
77
whenForIde {
76
- compileOnly(libs.kotlin.compiler)
77
78
compileOnly(libs.serialization.plugin.forIde) {
78
79
isTransitive = false
79
80
}
80
81
} otherwise {
81
- compileOnly(libs.kotlin.compiler.embeddable)
82
82
compileOnly(libs.serialization.plugin)
83
83
}
84
+
84
85
implementation(projects.compilerPluginCommon)
85
86
}
Original file line number Diff line number Diff line change @@ -55,7 +55,6 @@ kotlin-annotations-jvm = { module = "org.jetbrains.kotlin:kotlin-annotations-jvm
55
55
kotlin-gradle-plugin = { module = " org.jetbrains.kotlin:kotlin-gradle-plugin" , version.ref = " kotlin-lang" }
56
56
57
57
kotlin-compiler = { module = " org.jetbrains.kotlin:kotlin-compiler" , version.ref = " kotlin-compiler" }
58
- kotlin-compiler-embeddable = { module = " org.jetbrains.kotlin:kotlin-compiler-embeddable" }
59
58
kotlin-compiler-test-framework = { module = " org.jetbrains.kotlin:kotlin-compiler-internal-test-framework" , version.ref = " kotlin-lang" }
60
59
serialization-plugin = { module = " org.jetbrains.kotlin:kotlin-serialization-compiler-plugin" , version.ref = " kotlin-compiler" }
61
60
serialization-plugin-forIde = { module = " org.jetbrains.kotlin:kotlinx-serialization-compiler-plugin-for-ide" , version.ref = " kotlin-compiler" }
You can’t perform that action at this time.
0 commit comments