Skip to content

Commit

Permalink
fix(deps): update backend-patch
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Apr 7, 2024
1 parent 73dfeac commit 6a846d8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions backend/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,22 @@ dependencies {
implementation(kotlin("stdlib"))

// JVM dependency
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.2")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.3")

// Web framework
implementation("io.javalin:javalin:5.6.3")
implementation("io.javalin:javalin:5.6.4")

// Logging
implementation("org.slf4j:slf4j-simple:2.0.11")
implementation("org.slf4j:slf4j-simple:2.0.12")

// Hashing
implementation("com.github.komputing.khash:keccak:1.1.3")

// Testing
testImplementation(kotlin("test-junit5"))
testRuntimeOnly("org.junit.jupiter", "junit-jupiter-engine", "5.10.1")
testRuntimeOnly("org.junit.jupiter", "junit-jupiter-engine", "5.10.2")

detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:1.23.4")
detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:1.23.6")
}

application {
Expand All @@ -58,7 +58,7 @@ java {
}

detekt {
toolVersion = "1.23.4"
toolVersion = "1.23.6"
source.setFrom("src/main/kotlin")
config.setFrom("$projectDir/config/detekt/detekt.yml")
}
Expand Down

0 comments on commit 6a846d8

Please sign in to comment.