Skip to content

Commit 199bd80

Browse files
committed
Update to JDK 25 and Kotlin 2.3.0
1 parent 5f09d7d commit 199bd80

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
contents: read
1515
strategy:
1616
matrix:
17-
java: [ '21', '24' ]
17+
java: [ '25' ]
1818

1919
steps:
2020
- uses: actions/checkout@v4

README.md

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

66
## Starter project to create a simple RESTful web service in Kotlin
77

8-
**Updated for Kotlin 2.2.20 and Ktor 3.3.0**
8+
**Updated for Kotlin 2.3.0 and Ktor 3.3.3**
99

1010
Companion article: <https://ryanharrison.co.uk/2018/04/14/kotlin-ktor-exposed-starter.html>
1111

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ dependencies {
2828
}
2929

3030
kotlin {
31-
jvmToolchain(21)
31+
jvmToolchain(25)
3232
compilerOptions {
3333
allWarningsAsErrors.set(true)
3434
}

gradle/libs.versions.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[versions]
2-
kotlin = "2.2.20"
3-
ktor = "3.3.0"
4-
kover = "0.9.1"
2+
kotlin = "2.3.0"
3+
ktor = "3.3.3"
4+
kover = "0.9.4"
55
exposed = "0.61.0"
6-
h2 = "2.3.232"
7-
hikaricp = "6.2.1"
8-
flyway = "11.9.1"
9-
logback = "1.5.18"
10-
junit = "5.13.4"
6+
h2 = "2.4.240"
7+
hikaricp = "6.3.3"
8+
flyway = "11.19.0"
9+
logback = "1.5.22"
10+
junit = "6.0.1"
1111
assertj = "3.27.3"
12-
restAssured = "5.5.6"
12+
restAssured = "6.0.0"
1313

1414
[libraries]
1515
ktor-server-core = { module = "io.ktor:ktor-server-core", version.ref = "ktor" }
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.0-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)