Skip to content

Commit

Permalink
Merge pull request #70 from ing-bank/fix/outdated-dependencies
Browse files Browse the repository at this point in the history
Upgrade transitive dependency
  • Loading branch information
Grekkq committed Mar 31, 2023
2 parents 873fe91 + 363eca4 commit f793d3b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ assemblyJarName in assembly := "rokku-sts.jar"

val akkaVersion = "2.6.19"
val akkaHttpVersion = "10.2.9"
val keycloakVersion = "19.0.0"
val keycloakVersion = "21.0.2"
val logbackJson = "0.1.5"

libraryDependencies ++= Seq(
Expand All @@ -44,7 +44,6 @@ libraryDependencies ++= Seq(
"org.apache.httpcomponents" % "httpclient" % "4.5.13",
"ch.qos.logback.contrib" % "logback-json-classic" % logbackJson,
"ch.qos.logback.contrib" % "logback-jackson" % logbackJson,
"com.fasterxml.jackson.core" % "jackson-databind" % "2.13.4",
"com.auth0" % "java-jwt" % "4.0.0",
"com.bettercloud" % "vault-java-driver" % "5.1.0",
"redis.clients" % "jedis" % "4.3.0-m1",
Expand All @@ -53,6 +52,9 @@ libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-stream-testkit" % akkaVersion % Test,
"com.amazonaws" % "aws-java-sdk-sts" % "1.12.307" % IntegrationTest,
)
dependencyOverrides ++= Seq(
"com.fasterxml.jackson.core" % "jackson-databind" % "2.14.2",
)

configs(IntegrationTest)
Defaults.itSettings
Expand Down

0 comments on commit f793d3b

Please sign in to comment.