Skip to content

Commit

Permalink
Pin logback version
Browse files Browse the repository at this point in the history
  • Loading branch information
mdedetrich committed Mar 13, 2024
1 parent 31e1952 commit b158c63
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .scala-steward.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ updates.pin = [
# Pin sbt-paradox to v0.9.x because 0.10.x needs JDK 11
{ groupId = "com.lightbend.paradox", artifactId = "sbt-paradox-project-info", version = "0.9." }
{ groupId = "com.lightbend.paradox", artifactId = "sbt-paradox", version = "0.9." }
# Pin logback to v1.3.x because v1.4.x needs JDK11
{ groupId = "ch.qos.logback", version="1.3." }
]

updates.ignore = [
Expand Down
4 changes: 3 additions & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,10 @@ object Dependencies {
// for example
val pekkoManagementVersion = "1.0.0"

val logbackVersion = "1.3.14"

val nettyVersion = "4.1.107.Final"
val logback = "ch.qos.logback" % "logback-classic" % "1.2.13"
val logback = "ch.qos.logback" % "logback-classic" % logbackVersion

val reconcilerDependencies = Seq(
"org.apache.pekko" %% "pekko-actor-testkit-typed" % pekkoVersion % Test,
Expand Down

0 comments on commit b158c63

Please sign in to comment.