Skip to content

Commit

Permalink
Update Kotlin to 1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gsmet committed Jul 18, 2023
1 parent b29c43f commit 24a83d0
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
<aws-xray.version>2.14.0</aws-xray.version>
<azure-functions-java-library.version>2.2.0</azure-functions-java-library.version>
<azure-functions-java-spi.version>1.0.0</azure-functions-java-spi.version>
<kotlin.version>1.8.22</kotlin.version>
<kotlin.version>1.9.0</kotlin.version>
<kotlin.coroutine.version>1.7.1</kotlin.coroutine.version>
<azure.toolkit-lib.version>0.27.0</azure.toolkit-lib.version>
<kotlin-serialization.version>1.5.1</kotlin-serialization.version>
Expand Down
2 changes: 1 addition & 1 deletion build-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<!-- These properties are needed in order for them to be resolvable by the generated projects -->
<!-- Quarkus uses jboss-parent and it comes with 3.8.1-jboss-1, we don't want that in the templates -->
<compiler-plugin.version>3.11.0</compiler-plugin.version>
<kotlin.version>1.8.22</kotlin.version>
<kotlin.version>1.9.0</kotlin.version>
<dokka.version>1.8.10</dokka.version>
<scala.version>2.13.8</scala.version>
<scala-maven-plugin.version>4.8.1</scala-maven-plugin.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public void shouldReturnMultipleOutputSourceDirectories() {

@Test
public void shouldNotFailOnProjectDependenciesWithoutMain(@TempDir Path testProjectDir) throws IOException {
var kotlinVersion = System.getProperty("kotlin_version", "1.8.22");
var kotlinVersion = System.getProperty("kotlin_version", "1.9.0");
var settingFile = testProjectDir.resolve("settings.gradle.kts");
var mppProjectDir = testProjectDir.resolve("mpp");
var quarkusProjectDir = testProjectDir.resolve("quarkus");
Expand Down
5 changes: 3 additions & 2 deletions devtools/gradle/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[versions]
plugin-publish = "1.2.0"

# updating Kotlin here makes QuarkusPluginTest > shouldNotFailOnProjectDependenciesWithoutMain(Path) fail
kotlin = "1.8.10"
# updating Kotlin here might make QuarkusPluginTest > shouldNotFailOnProjectDependenciesWithoutMain(Path) fail
# if so, you can let the old version
kotlin = "1.9.0"
smallrye-config = "3.3.0"

junit5 = "5.9.3"
Expand Down
2 changes: 1 addition & 1 deletion independent-projects/arc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<!-- test versions -->
<version.assertj>3.24.2</version.assertj>
<version.junit5>5.9.3</version.junit5>
<version.kotlin>1.8.22</version.kotlin>
<version.kotlin>1.9.0</version.kotlin>
<version.kotlin-coroutines>1.7.1</version.kotlin-coroutines>
<version.mockito>5.3.1</version.mockito>
<!-- TCK versions -->
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
kotlin("jvm") version "1.8.22"
kotlin("plugin.allopen") version "1.8.22"
kotlin("jvm") version "1.9.0"
kotlin("plugin.allopen") version "1.9.0"
id("io.quarkus")
}

Expand Down

0 comments on commit 24a83d0

Please sign in to comment.