From 0db1cd2634c0a7ace85549ac5e19574a87cf099c Mon Sep 17 00:00:00 2001 From: Ryan Harrison Date: Sat, 2 Sep 2023 14:04:57 +0100 Subject: [PATCH] Update libs --- README.md | 6 +++--- build.gradle.kts | 18 +++++++++--------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 8126c55..643e240 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ -[![Kotlin](https://img.shields.io/badge/kotlin-1.8.21-blue.svg?logo=kotlin)](http://kotlinlang.org) -[![Ktor](https://img.shields.io/badge/ktor-2.3.0-blue.svg)](https://github.com/ktorio/ktor) +[![Kotlin](https://img.shields.io/badge/kotlin-1.9.0-blue.svg?logo=kotlin)](http://kotlinlang.org) +[![Ktor](https://img.shields.io/badge/ktor-2.3.4-blue.svg)](https://github.com/ktorio/ktor) [![Build](https://github.com/raharrison/kotlin-ktor-exposed-starter/workflows/Build/badge.svg)](https://github.com/raharrison/kotlin-ktor-exposed-starter/actions/workflows/build.yml) [![codecov](https://codecov.io/gh/raharrison/kotlin-ktor-exposed-starter/branch/master/graph/badge.svg?token=v2k9oObm0C)](https://codecov.io/gh/raharrison/kotlin-ktor-exposed-starter) ## Starter project to create a simple RESTful web service in Kotlin -**Updated for Kotlin 1.8.21 and Ktor 2.3.0** +**Updated for Kotlin 1.9.0 and Ktor 2.3.4** Companion article: diff --git a/build.gradle.kts b/build.gradle.kts index 39f6793..88227e3 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,17 +1,17 @@ -val ktorVersion = "2.3.0" -val exposedVersion = "0.41.1" -val h2Version = "2.1.214" +val ktorVersion = "2.3.4" +val exposedVersion = "0.43.0" +val h2Version = "2.1.222" val hikariCpVersion = "5.0.1" -val flywayVersion = "9.17.0" -val logbackVersion = "1.4.5" +val flywayVersion = "9.22.0" +val logbackVersion = "1.4.11" val assertjVersion = "3.24.2" -val restAssuredVersion = "5.3.0" +val restAssuredVersion = "5.3.1" val junitVersion = "5.9.1" plugins { - kotlin("jvm") version "1.8.21" - kotlin("plugin.serialization") version "1.8.21" - id("org.jetbrains.kotlinx.kover") version "0.6.1" + kotlin("jvm") version "1.9.0" + kotlin("plugin.serialization") version "1.9.0" + id("org.jetbrains.kotlinx.kover") version "0.7.3" application }