Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Zschimmer committed Oct 14, 2023
1 parent 7e1ff4b commit 970af26
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion build-with-docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN \
yum clean packages

RUN \
sbtVersion=1.8.2 &&\
sbtVersion=1.9.6 &&\
mkdir --parents /opt/lib/sbt-$sbtVersion &&\
curl --location https://github.com/sbt/sbt/releases/download/v$sbtVersion/sbt-$sbtVersion.tgz |\
tar xzf - --directory=/opt/lib/sbt-$sbtVersion --strip-components=1 sbt/ &&\
Expand Down
10 changes: 5 additions & 5 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ object Dependencies
val akkaVersion = "2.6.20" // Do not update to v2.7, due to restrictive Akka licences!
val akkaHttpVersion = "10.2.10" // Do not update to v10.4, due to restrictive Akka licences!
val slf4jVersion = "2.0.5" // See also plugins.sbt
val log4jVersion = "2.19.0" // See also plugins.sbt
val log4jVersion = "2.20.0" // See also plugins.sbt
val catsVersion = "2.9.0"
val catsEffectVersion = "2.5.5"
val izumiReflectVersion = "2.1.3"
//val kittensVersion = "1.2.1"
val catsParseVersion = "0.3.8"
val circeVersion = "0.14.3"
val circeGenericExtrasVersion = "0.14.1"
val scalaTestVersion = "3.2.15"
val catsParseVersion = "0.3.9"
val circeVersion = "0.14.6"
val circeGenericExtrasVersion = "0.14.3"
val scalaTestVersion = "3.2.16"
val scalaTestCheckVersion = "3.2.14.0"
val scalaCheckVersion= "1.17.0"
val sourcecodeVersion = "0.3.0"
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
sbt.version=1.8.2
sbt.version=1.9.6
# Check version in build-with-docker/Dockerfile, too !!!
8 changes: 4 additions & 4 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.8.0")
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.1.0")
//addSbtPlugin("com.thoughtworks.sbt-scala-js-map" % "sbt-scala-js-map" % "2.0.0")

libraryDependencies += "org.apache.logging.log4j" % "log4j-api" % "2.19.0"
libraryDependencies += "org.apache.logging.log4j" % "log4j-core" % "2.19.0"
libraryDependencies += "org.apache.logging.log4j" % "log4j-slf4j-impl" % "2.19.0"
libraryDependencies += "org.slf4j" % "slf4j-api" % "2.0.3"
libraryDependencies += "org.apache.logging.log4j" % "log4j-api" % "2.20.0"
libraryDependencies += "org.apache.logging.log4j" % "log4j-core" % "2.20.0"
libraryDependencies += "org.apache.logging.log4j" % "log4j-slf4j-impl" % "2.20.0"
libraryDependencies += "org.slf4j" % "slf4j-api" % "2.0.5"

0 comments on commit 970af26

Please sign in to comment.