Skip to content

Commit

Permalink
Match dependencies to Kotlin 1.9 recommendations (#7)
Browse files Browse the repository at this point in the history
* Maintainer tasks

Add the "versions" plugin to help maintainers keep the repo dependencies
up to date.

* Fix local build

With current Kotlin, the dependency for JVM projects is
"kotlin-test-junit".

Do not pin the stdlib to Java 8.
  • Loading branch information
binkley authored Sep 11, 2023
1 parent 8f9d731 commit 1167c7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ repositories {
}

dependencies {
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version")
implementation("org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version")
implementation("io.ktor:ktor-server-netty:$ktor_version")
implementation("ch.qos.logback:logback-classic:$logback_version")
implementation("io.ktor:ktor-server-core:$ktor_version")
Expand All @@ -32,7 +32,7 @@ dependencies {

implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jackson_version")

testImplementation("org.jetbrains.kotlin:kotlin-test:$kotlin_version")
testImplementation("org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version")
testImplementation("io.ktor:ktor-server-tests:$ktor_version")
testImplementation("io.strikt:strikt-core:$strikt_version")
testImplementation("io.ktor:ktor-client-content-negotiation:$ktor_version")
Expand Down

0 comments on commit 1167c7d

Please sign in to comment.