Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
dzikoysk committed Jan 2, 2024
2 parents 82a314b + a0d2cb4 commit 624c4d3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ subprojects {
testImplementation("net.javacrumbs.json-unit:json-unit-assertj:2.38.0")
testImplementation("com.konghq:unirest-java:3.14.2")

testImplementation("ch.qos.logback:logback-classic:1.4.6")
testImplementation("ch.qos.logback:logback-classic:1.4.13")
}

tasks.withType<Test> {
Expand All @@ -141,4 +141,4 @@ nexusPublishing {
}

fun getEnvOrProperty(env: String, property: String): String? =
System.getenv(env) ?: findProperty(property)?.toString()
System.getenv(env) ?: findProperty(property)?.toString()
2 changes: 1 addition & 1 deletion examples/javalin-gradle-kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ dependencies {
implementation("com.fasterxml.jackson.core:jackson-databind:2.15.2")

// logging
implementation("ch.qos.logback:logback-classic:1.4.7")
implementation("ch.qos.logback:logback-classic:1.4.13")

// some test integrations
implementation("org.mongodb:bson:4.9.1")
Expand Down
4 changes: 2 additions & 2 deletions openapi-annotation-processor/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies {

implementation("io.swagger.parser.v3:swagger-parser:2.1.15")

implementation("ch.qos.logback:logback-classic:1.4.5")
implementation("ch.qos.logback:logback-classic:1.4.13")

testImplementation("org.mongodb:bson:4.9.0")
}
Expand All @@ -29,4 +29,4 @@ tasks.withType<KaptGenerateStubs> {
dependsOn(
":openapi-annotation-processor:clean",
)
}
}

0 comments on commit 624c4d3

Please sign in to comment.