Skip to content

Commit

Permalink
upgrade 3rd party libs and avoid gradle warning
Browse files Browse the repository at this point in the history
  • Loading branch information
nkiesel committed Sep 9, 2023
1 parent 178a71c commit 202ec94
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
import kotlin.io.path.Path
import java.nio.file.Path
import kotlin.io.path.createDirectories
import kotlin.io.path.writeText

Expand All @@ -19,13 +19,13 @@ repositories {
dependencies {
implementation("com.github.ajalt.clikt:clikt:4.2.0")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.0")
implementation("org.http4k:http4k-core:5.7.4.0")
implementation("org.http4k:http4k-client-okhttp:5.7.4.0")
implementation("org.http4k:http4k-core:5.8.0.0")
implementation("org.http4k:http4k-client-okhttp:5.8.0.0")
implementation("com.github.ajalt.mordant:mordant:2.1.0")

testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.0")
testImplementation("io.kotest:kotest-assertions-core:5.7.0")
testImplementation("io.kotest:kotest-assertions-core:5.7.1")
}

kotlin {
Expand Down Expand Up @@ -58,7 +58,7 @@ tasks.register<Jar>("uberJar") {
})
}

val versionFile = Path("${layout.buildDirectory}/generated/version")
val versionFile: Path = layout.buildDirectory.file("generated/version").get().asFile.toPath()

sourceSets {
main {
Expand Down

0 comments on commit 202ec94

Please sign in to comment.