We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00acc59 commit b90c740Copy full SHA for b90c740
build.gradle.kts
@@ -7,10 +7,10 @@ import org.jetbrains.kotlin.gradle.dsl.KotlinVersion
7
val sonatypeUserName: String? by project
8
val sonatypePassword: String? by project
9
10
-val kotlinBaseVersion: String? by project
11
-if (extra.has("kspOnlyVersion") && kotlinBaseVersion != null) {
+// kspOnlyVersion is still used by CI to build 2.0.x releases.
+if (extra.has("kspOnlyVersion") && !extra.has("kspVersion")) {
12
val kspOnlyVersion = extra.get("kspOnlyVersion") as String
13
- extra.set("kspVersion", "$kotlinBaseVersion-$kspOnlyVersion")
+ extra.set("kspVersion", kspOnlyVersion)
14
}
15
16
if (!extra.has("kspVersion")) {
0 commit comments