Skip to content

Commit

Permalink
chore: update dependencies (#2214)
Browse files Browse the repository at this point in the history
  • Loading branch information
BalduinLandolt committed Sep 21, 2022
1 parent 9b76417 commit 3706acd
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 10 deletions.
7 changes: 6 additions & 1 deletion .scala-steward.conf
@@ -1,5 +1,10 @@
# ignore the following dependencies:
# jodd -> hard to update and only used in DateUtilV1
# gatling-sbt -> doesn't find the gatling libraries anymore after bumping
# sbt-scoverage -> version conflict in scala-xml

updates.ignore = [
{ groupId = "org.jodd", artifactId="jodd", version = "3.2.7" }
{ groupId = "org.jodd", artifactId = "jodd", version = "3.2.7" }
{ groupId = "io.gatling", artifactId = "gatling-sbt", version = "2.2.2" }
{ groupId = "org.scoverage", artifactId = "sbt-scoverage", version = "1.9.3" }
]
16 changes: 8 additions & 8 deletions project/Dependencies.scala
Expand Up @@ -18,11 +18,11 @@ object Dependencies {

val AkkaActorVersion = "2.6.20"
val AkkaHttpVersion = "10.2.10"
val JenaVersion = "4.6.0"
val JenaVersion = "4.6.1"

val ZioVersion = "2.0.2"
val ZioHttpVersion = "2.0.0-RC4"
val ZioJsonVersion = "0.3.0-RC11"
val ZioJsonVersion = "0.3.0"
val ZioConfigVersion = "3.0.2"
val ZioSchemaVersion = "0.2.0"
val ZioLoggingVersion = "2.1.0"
Expand Down Expand Up @@ -57,8 +57,8 @@ object Dependencies {

// logging
val scalaLogging = "com.typesafe.scala-logging" %% "scala-logging" % "3.9.5" // Scala 3 compatible
val slf4jApi = "org.slf4j" % "slf4j-api" % "2.0.0" // the logging interface
val logbackClassic = "ch.qos.logback" % "logback-classic" % "1.4.0" // the logging implementation
val slf4jApi = "org.slf4j" % "slf4j-api" % "2.0.1" // the logging interface
val logbackClassic = "ch.qos.logback" % "logback-classic" % "1.4.1" // the logging implementation

// Metrics
val aspectjweaver = "org.aspectj" % "aspectjweaver" % "1.9.9.1"
Expand Down Expand Up @@ -89,8 +89,8 @@ object Dependencies {
val icu4j = "com.ibm.icu" % "icu4j" % "71.1"
val jakartaJSON = "org.glassfish" % "jakarta.json" % "2.0.1"
val jodd = "org.jodd" % "jodd" % "3.2.7"
val rdf4jClient = "org.eclipse.rdf4j" % "rdf4j-client" % "4.1.0"
val rdf4jShacl = "org.eclipse.rdf4j" % "rdf4j-shacl" % "4.1.0"
val rdf4jClient = "org.eclipse.rdf4j" % "rdf4j-client" % "4.1.3"
val rdf4jShacl = "org.eclipse.rdf4j" % "rdf4j-shacl" % "4.1.3"
val saxonHE = "net.sf.saxon" % "Saxon-HE" % "11.4"
val scalaGraph = "org.scala-graph" %% "graph-core" % "1.13.5" // Scala 3 incompatible
val scallop = "org.rogach" %% "scallop" % "4.1.0" // Scala 3 compatible
Expand All @@ -102,8 +102,8 @@ object Dependencies {
val akkaHttpTestkit = "com.typesafe.akka" %% "akka-http-testkit" % AkkaHttpVersion // Scala 3 incompatible
val akkaStreamTestkit = "com.typesafe.akka" %% "akka-stream-testkit" % AkkaActorVersion // Scala 3 compatible
val akkaTestkit = "com.typesafe.akka" %% "akka-testkit" % AkkaActorVersion // Scala 3 compatible
val gatlingHighcharts = "io.gatling.highcharts" % "gatling-charts-highcharts" % "3.8.2"
val gatlingTestFramework = "io.gatling" % "gatling-test-framework" % "3.8.2"
val gatlingHighcharts = "io.gatling.highcharts" % "gatling-charts-highcharts" % "3.8.4"
val gatlingTestFramework = "io.gatling" % "gatling-test-framework" % "3.8.4"
val scalaTest = "org.scalatest" %% "scalatest" % "3.2.13" // Scala 3 compatible
val testcontainers = "org.testcontainers" % "testcontainers" % "1.17.3"

Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Expand Up @@ -15,7 +15,7 @@ addSbtPlugin("io.gatling" % "gatling-sbt" % "2.2.2")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.9.3")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.10.1")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.10.2")

// ad-hoc plugins - uncomment on demenad and keep it commented out in main branch

Expand Down

0 comments on commit 3706acd

Please sign in to comment.