Skip to content
Merged
2 changes: 1 addition & 1 deletion .github/workflows/aws.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: ['17']
java: ['21']
steps:
# https://github.com/actions/virtual-environments/issues/709
- name: Free disk space
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/azure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: ['17']
java: ['21']
steps:
# https://github.com/actions/virtual-environments/issues/709
- name: Free disk space
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gcp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: ['17']
java: ['21']
permissions:
contents: 'read'
id-token: 'write'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/oci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: ['17']
java: ['21']
permissions:
contents: 'read'
id-token: 'write'
Expand Down
12 changes: 1 addition & 11 deletions doc-examples/example-kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,18 +1,8 @@
import org.jetbrains.kotlin.gradle.dsl.JvmTarget

plugins {
id("org.jetbrains.kotlin.jvm")
id("com.google.devtools.ksp")
id("io.micronaut.build.internal.objectstorage-example")
}

java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}

kotlin {
this.compilerOptions.jvmTarget.set(JvmTarget.JVM_17)
id("io.micronaut.build.internal.kotlin-base")
}

dependencies {
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ bytebuddy = '1.17.8'

# Gradle plugins
micronaut-gradle-plugin = "4.5.5"
kotlin-gradle-plugin = "1.9.25"
kotlin-gradle-ksp-plugin = "1.9.25-1.0.20"
kotlin-gradle-plugin = "2.2.20"
kotlin-gradle-ksp-plugin = "2.2.20-2.0.4"

[libraries]
# Core
Expand Down
5 changes: 1 addition & 4 deletions test-suite-utils/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
plugins {
java
}
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
id ("io.micronaut.build.internal.java-base")
}
Loading