Skip to content

Commit

Permalink
bump: logback-classic 1.4.14 (was 1.2.13)
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward committed Dec 7, 2023
1 parent e049187 commit 8126318
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ object Dependencies {
val msSQLServerDriver = "com.microsoft.sqlserver" % "mssql-jdbc" % "7.4.1.jre8" % allTestConfig
val oracleDriver = "com.oracle.ojdbc" % "ojdbc8" % "19.3.0.0" % allTestConfig

val logback = "ch.qos.logback" % "logback-classic" % "1.2.13" % allTestConfig
val logback = "ch.qos.logback" % "logback-classic" % "1.4.14" % allTestConfig

val cassandraContainer =
"org.testcontainers" % "cassandra" % Versions.testContainers % allTestConfig
Expand Down
2 changes: 1 addition & 1 deletion samples/grpc/iot-service-scala/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ libraryDependencies ++= Seq(
"com.lightbend.akka" %% "akka-diagnostics" % AkkaDiagnosticsVersion,
// Common dependencies for logging and testing
"com.typesafe.akka" %% "akka-slf4j" % AkkaVersion,
"ch.qos.logback" % "logback-classic" % "1.2.13",
"ch.qos.logback" % "logback-classic" % "1.4.14",
"org.scalatest" %% "scalatest" % "3.1.2" % Test,
// 2. Using Akka Persistence
"com.typesafe.akka" %% "akka-persistence-typed" % AkkaVersion,
Expand Down
10 changes: 5 additions & 5 deletions samples/grpc/local-drone-control-scala/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ name := "local-drone-control"

organization := "com.lightbend.akka.samples"
organizationHomepage := Some(url("https://akka.io"))
licenses := Seq(
("CC0", url("https://creativecommons.org/publicdomain/zero/1.0")))
licenses := Seq(("CC0", url("https://creativecommons.org/publicdomain/zero/1.0")))

resolvers += "Akka library repository".at("https://repo.akka.io/maven")

Expand Down Expand Up @@ -69,7 +68,7 @@ libraryDependencies ++= Seq(
"com.lightbend.akka.discovery" %% "akka-discovery-kubernetes-api" % AkkaManagementVersion,
// Common dependencies for logging and testing
"com.typesafe.akka" %% "akka-slf4j" % AkkaVersion,
"ch.qos.logback" % "logback-classic" % "1.2.13",
"ch.qos.logback" % "logback-classic" % "1.4.14",
"org.scalatest" %% "scalatest" % "3.1.2" % Test,
// Prometheus client for custom metrics
"io.prometheus" % "simpleclient" % "0.16.0",
Expand Down Expand Up @@ -105,8 +104,9 @@ nativeImageOptions := Seq(

NativeImage / mainClass := sys.props
.get("native.mode")
.collect { case "clustered" =>
"local.drones.ClusteredMain"
.collect {
case "clustered" =>
"local.drones.ClusteredMain"
}
.orElse((Compile / run / mainClass).value)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ libraryDependencies ++= Seq(
"com.lightbend.akka" %% "akka-diagnostics" % AkkaDiagnosticsVersion,
// Common dependencies for logging and testing
"com.typesafe.akka" %% "akka-slf4j" % AkkaVersion,
"ch.qos.logback" % "logback-classic" % "1.2.13",
"ch.qos.logback" % "logback-classic" % "1.4.14",
"org.scalatest" %% "scalatest" % "3.1.2" % Test,
// 2. Using Akka Persistence
"com.typesafe.akka" %% "akka-persistence-typed" % AkkaVersion,
Expand Down
2 changes: 1 addition & 1 deletion samples/grpc/shopping-analytics-service-scala/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ libraryDependencies ++= Seq(
"com.lightbend.akka" %% "akka-diagnostics" % AkkaDiagnosticsVersion,
// Common dependencies for logging and testing
"com.typesafe.akka" %% "akka-slf4j" % AkkaVersion,
"ch.qos.logback" % "logback-classic" % "1.2.13",
"ch.qos.logback" % "logback-classic" % "1.4.14",
"org.scalatest" %% "scalatest" % "3.1.2" % Test,
// 2. Using Akka Persistence
"com.typesafe.akka" %% "akka-persistence-typed" % AkkaVersion,
Expand Down
2 changes: 1 addition & 1 deletion samples/grpc/shopping-cart-service-scala/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ libraryDependencies ++= Seq(
"com.lightbend.akka" %% "akka-diagnostics" % AkkaDiagnosticsVersion,
// Common dependencies for logging and testing
"com.typesafe.akka" %% "akka-slf4j" % AkkaVersion,
"ch.qos.logback" % "logback-classic" % "1.2.13",
"ch.qos.logback" % "logback-classic" % "1.4.14",
"org.scalatest" %% "scalatest" % "3.1.2" % Test,
// 2. Using Akka Persistence
"com.typesafe.akka" %% "akka-persistence-typed" % AkkaVersion,
Expand Down
2 changes: 1 addition & 1 deletion samples/replicated/shopping-cart-service-scala/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ libraryDependencies ++= Seq(
"com.lightbend.akka" %% "akka-diagnostics" % AkkaDiagnosticsVersion,
// Common dependencies for logging and testing
"com.typesafe.akka" %% "akka-slf4j" % AkkaVersion,
"ch.qos.logback" % "logback-classic" % "1.2.13",
"ch.qos.logback" % "logback-classic" % "1.4.14",
"org.scalatest" %% "scalatest" % "3.1.2" % Test,
// 2. Using Akka Persistence
"com.typesafe.akka" %% "akka-persistence-typed" % AkkaVersion,
Expand Down

0 comments on commit 8126318

Please sign in to comment.