Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Zschimmer committed Dec 7, 2024
1 parent 428c127 commit fe8e6f8
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions build-with-docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ END
RUN <<END
# Install sbt
set -euo pipefail
sbtVersion=1.10.3
sbtSHA256=fbd10b59704743d91032e099705dd81ff146eee2a658ceba99ca982843b1fc75
sbtVersion=1.10.6
sbtSHA256=7e1b098effec80614e838aa61b753a8b46237b24b706ec9b37609030800c111a
mkdir --parents /opt/lib/sbt-$sbtVersion
cd /root
curl --location https://github.com/sbt/sbt/releases/download/v$sbtVersion/sbt-$sbtVersion.tgz \
Expand Down
8 changes: 4 additions & 4 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ object Dependencies
val pekkoVersion = "1.1.2"
val pekkoHttpVersion = "1.1.0"
val slf4jVersion = "2.0.16" // See also plugins.sbt
val log4jVersion = "2.24.1" // See also plugins.sbt
val log4jVersion = "2.24.2" // See also plugins.sbt
val catsVersion = "2.12.0"
val catsEffectVersion = "3.5.4"
val catsEffectVersion = "3.5.7"
val catsEffectTestingVersion = catsEffectVersion
val izumiReflectVersion = "2.3.8"
//val kittensVersion = "1.2.1"
Expand All @@ -19,7 +19,7 @@ object Dependencies
val circeGenericExtrasVersion = "0.14.3"
val scalaTestVersion = "3.2.19"
val scalaTestCheckVersion = "3.2.14.0"
val scalaCheckVersion= "1.18.0"
val scalaCheckVersion= "1.18.1"
val sourcecodeVersion = "0.4.1"
val disciplineVersion = "1.5.1"
val disciplineScalaTestVersion = "2.2.0"
Expand Down Expand Up @@ -47,7 +47,7 @@ object Dependencies
val cats = "org.typelevel" %% "cats-core" % catsVersion
val catsEffectTesting = List(
"org.typelevel" %% "cats-effect-testkit" % catsEffectTestingVersion % Test,
"org.typelevel" %% "cats-effect-testing-scalatest" % "1.5.0" % Test)
"org.typelevel" %% "cats-effect-testing-scalatest" % "1.6.0" % Test)
val tagging = "com.softwaremill.common" %% "tagging" % softwaremillTaggingVersion

val javaxInject = "javax.inject" % "javax.inject" % "1"
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.10.3
sbt.version=1.10.6
# Check version in build-with-docker/Dockerfile, too !!!
20 changes: 10 additions & 10 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.12.0")
addSbtPlugin("com.github.sbt" % "sbt-git" % "2.0.1")
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.9.16")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.13.0")
addSbtPlugin("com.github.sbt" % "sbt-git" % "2.1.0")
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.10.4")
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.4.0")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.2.0")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.12.0")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.3.0")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.13.1")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
//addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.14.0")
//addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.17.0")
//addSbtPlugin("com.thoughtworks.sbt-scala-js-map" % "sbt-scala-js-map" % "2.0.0")

libraryDependencies += "org.apache.logging.log4j" % "log4j-api" % "2.24.1"
libraryDependencies += "org.apache.logging.log4j" % "log4j-core" % "2.24.1"
libraryDependencies += "org.apache.logging.log4j" % "log4j-slf4j-impl" % "2.24.1"
libraryDependencies += "org.slf4j" % "slf4j-api" % "2.0.13"
libraryDependencies += "org.apache.logging.log4j" % "log4j-api" % "2.24.2"
libraryDependencies += "org.apache.logging.log4j" % "log4j-core" % "2.24.2"
libraryDependencies += "org.apache.logging.log4j" % "log4j-slf4j-impl" % "2.24.2"
libraryDependencies += "org.slf4j" % "slf4j-api" % "2.0.16"

0 comments on commit fe8e6f8

Please sign in to comment.