Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
raharrison committed Apr 29, 2023
1 parent 4ca0b36 commit 14d2f08
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[![Kotlin](https://img.shields.io/badge/kotlin-1.8.0-blue.svg?logo=kotlin)](http://kotlinlang.org)
[![Ktor](https://img.shields.io/badge/ktor-2.2.2-blue.svg)](https://github.com/ktorio/ktor)
[![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)
[![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.0 and Ktor 2.2.2**
**Updated for Kotlin 1.8.21 and Ktor 2.3.0**

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

Expand Down
10 changes: 5 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
val ktorVersion = "2.2.2"
val ktorVersion = "2.3.0"
val exposedVersion = "0.41.1"
val h2Version = "2.1.214"
val hikariCpVersion = "5.0.1"
val flywayVersion = "9.10.2"
val flywayVersion = "9.17.0"
val logbackVersion = "1.4.5"
val assertjVersion = "3.23.1"
val assertjVersion = "3.24.2"
val restAssuredVersion = "5.3.0"
val junitVersion = "5.9.1"

plugins {
kotlin("jvm") version "1.8.0"
kotlin("plugin.serialization") version "1.8.0"
kotlin("jvm") version "1.8.21"
kotlin("plugin.serialization") version "1.8.21"
id("org.jetbrains.kotlinx.kover") version "0.6.1"
application
}
Expand Down

0 comments on commit 14d2f08

Please sign in to comment.