Skip to content

Commit e056829

Browse files
committed
Upgrade to Kotlin 2.2.21
(cherry picked from commit 9034356)
1 parent 08a7c4f commit e056829

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

bom/application/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@
152152
<cloudevents-api.version>3.0.0</cloudevents-api.version>
153153
<azure-functions-java-library.version>3.2.2</azure-functions-java-library.version>
154154
<azure-functions-java-spi.version>1.1.0</azure-functions-java-spi.version>
155-
<kotlin.version>2.2.20</kotlin.version>
155+
<kotlin.version>2.2.21</kotlin.version>
156156
<kotlin.coroutine.version>1.10.2</kotlin.coroutine.version>
157157
<kotlin-serialization.version>1.9.0</kotlin-serialization.version>
158158
<azure.toolkit-lib.version>0.53.0</azure.toolkit-lib.version>

build-parent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
<!-- These properties are needed in order for them to be resolvable by the generated projects -->
2222
<compiler-plugin.version>${version.compiler.plugin}</compiler-plugin.version>
23-
<kotlin.version>2.2.20</kotlin.version>
23+
<kotlin.version>2.2.21</kotlin.version>
2424
<ksp-gradle-plugin.version>2.2.10-2.0.2</ksp-gradle-plugin.version> <!-- Kotlin Symbol Processing plugin used in a test -->
2525
<dokka.version>2.0.0</dokka.version>
2626
<scala.version>2.13.12</scala.version>

devtools/gradle/gradle-application-plugin/src/test/java/io/quarkus/gradle/QuarkusPluginTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public void shouldReturnMultipleOutputSourceDirectories() {
106106

107107
@Test
108108
public void shouldNotFailOnProjectDependenciesWithoutMain(@TempDir Path testProjectDir) throws IOException {
109-
var kotlinVersion = System.getProperty("kotlin_version", "2.2.10");
109+
var kotlinVersion = System.getProperty("kotlin_version", "2.2.21");
110110
var settingFile = testProjectDir.resolve("settings.gradle");
111111
var mppProjectDir = testProjectDir.resolve("mpp");
112112
var quarkusProjectDir = testProjectDir.resolve("quarkus");

devtools/gradle/gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[versions]
22
plugin-publish = "2.0.0"
33

4-
kotlin = "2.2.20"
4+
kotlin = "2.2.21"
55
smallrye-config = "3.14.1"
66

77
junit5 = "5.13.4"

extensions/schema-registry/confluent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<dependency>
2626
<groupId>org.jetbrains.kotlin</groupId>
2727
<artifactId>kotlin-scripting-compiler-embeddable</artifactId>
28-
<version>2.2.20</version>
28+
<version>2.2.21</version>
2929
</dependency>
3030
<dependency>
3131
<groupId>org.json</groupId>

independent-projects/arc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
<!-- test versions -->
5454
<version.assertj>3.27.6</version.assertj>
5555
<version.junit5>5.13.4</version.junit5>
56-
<version.kotlin>2.2.20</version.kotlin>
56+
<version.kotlin>2.2.21</version.kotlin>
5757
<version.kotlin-coroutines>1.10.2</version.kotlin-coroutines>
5858
<version.mockito>5.20.0</version.mockito>
5959
<!-- TCK versions -->

integration-tests/gradle/src/main/resources/conditional-dependencies-kotlin/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
2-
kotlin("jvm") version "2.2.10"
3-
kotlin("plugin.allopen") version "2.2.10"
2+
kotlin("jvm") version "2.2.21"
3+
kotlin("plugin.allopen") version "2.2.21"
44
id("io.quarkus")
55
}
66

integration-tests/gradle/src/main/resources/grpc-multi-module-no-java/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
2-
kotlin("jvm") version "2.2.10"
3-
kotlin("plugin.allopen") version "2.2.10"
2+
kotlin("jvm") version "2.2.21"
3+
kotlin("plugin.allopen") version "2.2.21"
44

55
id("io.quarkus") apply false
66
}

integration-tests/kafka-json-schema-apicurio2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<dependency>
2424
<groupId>org.jetbrains.kotlin</groupId>
2525
<artifactId>kotlin-scripting-compiler-embeddable</artifactId>
26-
<version>2.2.20</version>
26+
<version>2.2.21</version>
2727
</dependency>
2828
<dependency>
2929
<groupId>org.json</groupId>

0 commit comments

Comments
 (0)