Skip to content

Commit

Permalink
fix(deps): update dependency ch.qos.logback:logback-classic to v1.5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
zero88 committed May 13, 2024
1 parent 4b37fb2 commit f8b97d6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ subprojects {
contains("junit-pioneer") -> dep.useVersion(libs.versions.junitPioneer.jdk8.get())
contains("HikariCP") -> dep.useVersion(libs.versions.hikariCP.jdk8.get())
contains("agroal") -> dep.useVersion(libs.versions.agroal.jdk8.get())
contains("logback") -> dep.useVersion(libs.versions.logback.jdk8.get())
else -> throw IllegalArgumentException("Unknown module $this")
}
}
Expand Down
7 changes: 4 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ junitPioneer_jdk11 = "2.2.0"
## Logging
slf4j = "2.0.13"
log4j2 = "2.23.1"
logback = "1.3.14"
logback_jdk8 = "1.3.14"
logback_jdk11 = "1.5.6"
## Jackson
jackson = "2.17.1"
## JDBC
Expand Down Expand Up @@ -56,7 +57,7 @@ log4j2slf4j = { module = "org.apache.logging.log4j:log4j-slf4j-impl", version.re
## slf4j
slf4j = { module = "org.slf4j:slf4j-api", version.ref = "slf4j" }
slf4jSimple = { module = "org.slf4j:slf4j-simple", version.ref = "slf4j" }
logback = { module = "ch.qos.logback:logback-classic", version.ref = "logback" }
logback = { module = "ch.qos.logback:logback-classic", version.ref = "logback_jdk11" }
## JDBC
scram = { module = "com.ongres.scram:client", version = "2.1" }
agroalApi = { module = "io.agroal:agroal-api", version.ref = "agroal_jdk11" }
Expand Down Expand Up @@ -101,7 +102,7 @@ slf4jImpl = ["slf4j", "slf4jSimple"]
postgres = ["postgresContainer", "postgresJdbc", "postgresVertx"]
mysql = ["mysqlContainer", "mysqlJdbc", "mysqlVertx"]
agroal = ["agroalApi", "agroalPool"]
java8libs = ["junitPioneer", "hikariCP", "agroalApi", "agroalPool"]
java8libs = ["junitPioneer", "hikariCP", "agroalApi", "agroalPool", "logback"]

[plugins]
oss = { id = "cloud.playio.gradle.oss", version.ref = "pluginPlayio" }
Expand Down

0 comments on commit f8b97d6

Please sign in to comment.