diff --git a/access-control-service/build.sbt b/access-control-service/build.sbt index 93af38e4420..4b8515a9def 100644 --- a/access-control-service/build.sbt +++ b/access-control-service/build.sbt @@ -57,7 +57,7 @@ Compile / scalacOptions ++= Seq( // Version Variables ///////////////////////////////////////////////////////////////////////////// -val dropwizardVersion = "4.0.7" +val dropwizardVersion = "4.0.17" val mockitoVersion = "5.4.0" val assertjVersion = "3.27.7" diff --git a/amber/build.sbt b/amber/build.sbt index 57e83988591..94bd40649c1 100644 --- a/amber/build.sbt +++ b/amber/build.sbt @@ -101,7 +101,7 @@ val pekkoDependencies = Seq( ///////////////////////////////////////////////////////////////////////////// // DropWizard server related -val dropwizardVersion = "1.3.23" +val dropwizardVersion = "1.3.29" val dropwizardDependencies = Seq( "io.dropwizard" % "dropwizard-core" % dropwizardVersion, @@ -121,8 +121,8 @@ val jacksonVersion = "2.18.8" val mbknorJacksonJsonSchemaDependencies = Seq( "com.fasterxml.jackson.core" % "jackson-databind" % jacksonVersion, "javax.validation" % "validation-api" % "2.0.1.Final", - "org.slf4j" % "slf4j-api" % "1.7.26", - "io.github.classgraph" % "classgraph" % "4.8.184", + "org.slf4j" % "slf4j-api" % "1.7.36", + "io.github.classgraph" % "classgraph" % "4.8.195", "ch.qos.logback" % "logback-classic" % "1.2.13" % "test", "com.github.java-json-tools" % "json-schema-validator" % "2.2.14" % "test", "com.fasterxml.jackson.module" % "jackson-module-kotlin" % jacksonVersion % "test", @@ -181,7 +181,7 @@ val hadoopDependencies = Seq( // Google Service related val googleServiceDependencies = Seq( "com.google.oauth-client" % "google-oauth-client-jetty" % "1.39.0" exclude("com.google.guava", "guava"), - "com.google.api-client" % "google-api-client" % "2.9.0" exclude("com.google.guava", "guava"), + "com.google.api-client" % "google-api-client" % "2.9.1" exclude("com.google.guava", "guava"), "com.sun.mail" % "javax.mail" % "1.6.2" ) @@ -293,10 +293,10 @@ libraryDependencies += "com.esotericsoftware" % "kryo" % "5.6.2" libraryDependencies += "com.esotericsoftware" % "kryo5" % "5.6.0" // https://mvnrepository.com/artifact/io.altoo/pekko-kryo-serialization -libraryDependencies += "io.altoo" %% "pekko-kryo-serialization" % "1.5.1" +libraryDependencies += "io.altoo" %% "pekko-kryo-serialization" % "1.5.2" // https://mvnrepository.com/artifact/io.altoo/scala-kryo-serialization -libraryDependencies += "io.altoo" %% "scala-kryo-serialization" % "1.5.2" +libraryDependencies += "io.altoo" %% "scala-kryo-serialization" % "1.5.3" // https://mvnrepository.com/artifact/com.twitter/util-core libraryDependencies += "com.twitter" %% "util-core" % "22.12.0" @@ -321,7 +321,7 @@ libraryDependencies += "org.jasypt" % "jasypt" % "1.9.3" // Jgit library for tracking operator version // https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit -libraryDependencies += "org.eclipse.jgit" % "org.eclipse.jgit" % "5.13.0.202109080827-r" +libraryDependencies += "org.eclipse.jgit" % "org.eclipse.jgit" % "5.13.5.202508271544-r" // https://mvnrepository.com/artifact/org.ehcache/sizeof libraryDependencies += "org.ehcache" % "sizeof" % "0.4.4" diff --git a/amber/project/plugins.sbt b/amber/project/plugins.sbt index d7742bf2da2..3a1a09eae2b 100644 --- a/amber/project/plugins.sbt +++ b/amber/project/plugins.sbt @@ -16,8 +16,8 @@ // under the License. addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.2") -addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.14.6") +addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.14.8") -addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.11.1") +addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.11.7") // for scalapb code gen addSbtPlugin("org.typelevel" % "sbt-fs2-grpc" % "2.11.0") diff --git a/build.sbt b/build.sbt index 035edbb68cc..59b2bca5281 100644 --- a/build.sbt +++ b/build.sbt @@ -87,7 +87,7 @@ val jacksonVersion = "2.18.8" // 4.1/4.2 line breaks it (NoClassDefFoundError: ThreadAwareExecutor). Arrow // 19.0.0 targets the Netty 4.2 line, so the whole family is held at 4.2.x here // and in common/workflow-core/build.sbt. -val nettyVersion = "4.2.15.Final" +val nettyVersion = "4.2.17.Final" // The full Netty family pinned to nettyVersion. Applied to every module whose // dist bundles Arrow Flight (amber + the Arrow-carrying platform services), so @@ -257,10 +257,10 @@ lazy val WorkflowExecutionService = (project in file("amber")) "com.fasterxml.jackson.core" % "jackson-core" % jacksonVersion, "com.fasterxml.jackson.core" % "jackson-databind" % jacksonVersion, "com.fasterxml.jackson.module" %% "jackson-module-scala" % jacksonVersion, - "org.slf4j" % "slf4j-api" % "1.7.26", - "org.eclipse.jetty" % "jetty-server" % "9.4.20.v20190813", - "org.eclipse.jetty" % "jetty-servlet" % "9.4.20.v20190813", - "org.eclipse.jetty" % "jetty-http" % "9.4.20.v20190813" + "org.slf4j" % "slf4j-api" % "1.7.36", + "org.eclipse.jetty" % "jetty-server" % "9.4.58.v20250814", + "org.eclipse.jetty" % "jetty-servlet" % "9.4.58.v20250814", + "org.eclipse.jetty" % "jetty-http" % "9.4.58.v20250814" ) ++ nettyDependencyOverrides, libraryDependencies ++= Seq( "com.squareup.okhttp3" % "okhttp" % "4.10.0" force () // Force usage of OkHttp 4.10.0 diff --git a/common/auth/build.sbt b/common/auth/build.sbt index 866babec959..6e313a7c633 100644 --- a/common/auth/build.sbt +++ b/common/auth/build.sbt @@ -52,16 +52,16 @@ Compile / scalacOptions ++= Seq( // Core Dependencies libraryDependencies ++= Seq( - "com.typesafe" % "config" % "1.4.6", // config reader - "com.typesafe.scala-logging" %% "scala-logging" % "3.9.5", // for LazyLogging + "com.typesafe" % "config" % "1.4.9", // config reader + "com.typesafe.scala-logging" %% "scala-logging" % "3.9.6", // for LazyLogging "org.bitbucket.b_c" % "jose4j" % "0.9.6", // for jwt parser "jakarta.ws.rs" % "jakarta.ws.rs-api" % "3.0.0", // for JwtAuthFilter "jakarta.annotation" % "jakarta.annotation-api" % "2.1.1", // for @Priority on JwtAuthFilter "jakarta.servlet" % "jakarta.servlet-api" % "5.0.0" % "provided", // for RequestLoggingFilter - "org.eclipse.jetty" % "jetty-servlet" % "11.0.24" % "provided", // for FilterHolder + "org.eclipse.jetty" % "jetty-servlet" % "11.0.26" % "provided", // for FilterHolder "org.glassfish.jersey.core" % "jersey-server" % "3.0.12" % "provided", // for RoleAnnotationEnforcer's ResourceConfig overload and AuthFeatures' RolesAllowedDynamicFeature - "io.dropwizard" % "dropwizard-core" % "4.0.7" % "provided", // for AuthFeatures' Environment - "io.dropwizard" % "dropwizard-auth" % "4.0.7" % "provided", // for AuthFeatures' AuthDynamicFeature/AuthValueFactoryProvider - "org.scalatest" %% "scalatest" % "3.2.17" % Test, + "io.dropwizard" % "dropwizard-core" % "4.0.17" % "provided", // for AuthFeatures' Environment + "io.dropwizard" % "dropwizard-auth" % "4.0.17" % "provided", // for AuthFeatures' AuthDynamicFeature/AuthValueFactoryProvider + "org.scalatest" %% "scalatest" % "3.2.20" % Test, "org.mockito" % "mockito-core" % "5.4.0" % Test // for mocking the Jersey environment in AuthFeaturesSpec ) \ No newline at end of file diff --git a/common/config/build.sbt b/common/config/build.sbt index e1b8c5a1e18..b3398ab67cd 100644 --- a/common/config/build.sbt +++ b/common/config/build.sbt @@ -49,6 +49,6 @@ Compile / scalacOptions ++= Seq( // Core Dependencies libraryDependencies ++= Seq( - "com.typesafe" % "config" % "1.4.6", // For configuration management - "org.scalatest" %% "scalatest" % "3.2.15" % Test // ScalaTest (for unit tests) + "com.typesafe" % "config" % "1.4.9", // For configuration management + "org.scalatest" %% "scalatest" % "3.2.20" % Test // ScalaTest (for unit tests) ) \ No newline at end of file diff --git a/common/dao/build.sbt b/common/dao/build.sbt index d010ebd40c0..0f3a059feaa 100644 --- a/common/dao/build.sbt +++ b/common/dao/build.sbt @@ -141,7 +141,7 @@ Compile / managedSourceDirectories += (Compile / sourceManaged).value // ScalaPB library dependencies libraryDependencies ++= Seq( "com.thesamet.scalapb" %% "scalapb-runtime" % scalapb.compiler.Version.scalapbVersion % "protobuf", - "com.thesamet.scalapb" %% "scalapb-json4s" % "0.12.0" // For ScalaPB 0.11.x + "com.thesamet.scalapb" %% "scalapb-json4s" % "0.12.2" // For ScalaPB 0.11.x ) // Enable protobuf compilation in Test @@ -154,7 +154,7 @@ Test / PB.protoSources += PB.externalSourcePath.value libraryDependencies ++= Seq( "org.scalamock" %% "scalamock" % "5.2.0" % Test, // ScalaMock - "org.scalatest" %% "scalatest" % "3.2.15" % Test, // ScalaTest + "org.scalatest" %% "scalatest" % "3.2.20" % Test, // ScalaTest "junit" % "junit" % "4.13.2" % Test, // JUnit "com.novocode" % "junit-interface" % "0.11" % Test, // SBT interface for JUnit "io.zonky.test" % "embedded-postgres" % "2.1.0" % Test // For mock postgres DB @@ -173,6 +173,6 @@ libraryDependencies ++= Seq( ///////////////////////////////////////////////////////////////////////////// libraryDependencies ++= Seq( - "org.postgresql" % "postgresql" % "42.7.10", + "org.postgresql" % "postgresql" % "42.7.13", "com.zaxxer" % "HikariCP" % "5.1.0" ) diff --git a/common/pybuilder/build.sbt b/common/pybuilder/build.sbt index cf6bf9fb268..25cdf284c18 100644 --- a/common/pybuilder/build.sbt +++ b/common/pybuilder/build.sbt @@ -53,10 +53,10 @@ Compile / scalacOptions ++= Seq( libraryDependencies ++= Seq( "org.scalamock" %% "scalamock" % "5.2.0" % Test, // ScalaMock - "org.scalatest" %% "scalatest" % "3.2.15" % Test, // ScalaTest + "org.scalatest" %% "scalatest" % "3.2.20" % Test, // ScalaTest "junit" % "junit" % "4.13.2" % Test, // JUnit "com.novocode" % "junit-interface" % "0.11" % Test, // SBT interface for JUnit - "io.github.classgraph" % "classgraph" % "4.8.184" % Test, + "io.github.classgraph" % "classgraph" % "4.8.195" % Test, "org.scala-lang" % "scala-compiler" % scalaVersion.value % Test ) diff --git a/common/resource/build.sbt b/common/resource/build.sbt index ab974601558..55e54f3f9dc 100644 --- a/common/resource/build.sbt +++ b/common/resource/build.sbt @@ -51,5 +51,5 @@ Compile / scalacOptions ++= Seq( libraryDependencies ++= Seq( "jakarta.ws.rs" % "jakarta.ws.rs-api" % "3.0.0", // JAX-RS annotations for shared REST resources "jakarta.annotation" % "jakarta.annotation-api" % "2.1.1", // @PermitAll on shared REST resources - "org.scalatest" %% "scalatest" % "3.2.15" % Test // ScalaTest (for unit tests) + "org.scalatest" %% "scalatest" % "3.2.20" % Test // ScalaTest (for unit tests) ) diff --git a/common/util/build.sbt b/common/util/build.sbt index addb2ff9fd3..67036511ba5 100644 --- a/common/util/build.sbt +++ b/common/util/build.sbt @@ -51,5 +51,5 @@ Compile / scalacOptions ++= Seq( // every service that does. Callers pass their own logger in through the hooks // instead of the module pulling in a logging library. libraryDependencies ++= Seq( - "org.scalatest" %% "scalatest" % "3.2.15" % Test // ScalaTest (for unit tests) + "org.scalatest" %% "scalatest" % "3.2.20" % Test // ScalaTest (for unit tests) ) diff --git a/common/workflow-compiler/build.sbt b/common/workflow-compiler/build.sbt index b5224529668..92cbbbb4689 100644 --- a/common/workflow-compiler/build.sbt +++ b/common/workflow-compiler/build.sbt @@ -36,7 +36,7 @@ Compile / scalacOptions ++= Seq( ////////////////////////////////////////////////////////////////////////////// libraryDependencies ++= Seq( - "org.scalatest" %% "scalatest" % "3.2.15" % Test + "org.scalatest" %% "scalatest" % "3.2.20" % Test ) // Arrow 19's transitive deps (via WorkflowOperator -> WorkflowCore) pull diff --git a/common/workflow-core/build.sbt b/common/workflow-core/build.sbt index bfc14670419..b27ac9d6093 100644 --- a/common/workflow-core/build.sbt +++ b/common/workflow-core/build.sbt @@ -107,7 +107,7 @@ Compile / managedSourceDirectories += (Compile / sourceManaged).value // ScalaPB library dependencies libraryDependencies ++= Seq( "com.thesamet.scalapb" %% "scalapb-runtime" % scalapb.compiler.Version.scalapbVersion % "protobuf", - "com.thesamet.scalapb" %% "scalapb-json4s" % "0.12.0" // For ScalaPB 0.11.x + "com.thesamet.scalapb" %% "scalapb-json4s" % "0.12.2" // For ScalaPB 0.11.x ) // Enable protobuf compilation in Test @@ -122,7 +122,7 @@ val testcontainersVersion = "0.44.1" libraryDependencies ++= Seq( "org.scalamock" %% "scalamock" % "5.2.0" % Test, // ScalaMock - "org.scalatest" %% "scalatest" % "3.2.15" % Test, // ScalaTest + "org.scalatest" %% "scalatest" % "3.2.20" % Test, // ScalaTest "junit" % "junit" % "4.13.2" % Test, // JUnit "com.novocode" % "junit-interface" % "0.11" % Test, // SBT interface for JUnit "com.dimafeng" %% "testcontainers-scala-scalatest" % testcontainersVersion % Test, // Testcontainers ScalaTest integration @@ -151,7 +151,7 @@ libraryDependencies ++= Seq( ///////////////////////////////////////////////////////////////////////////// // Arrow related val arrowVersion = "19.0.0" -val nettyVersion = "4.2.15.Final" +val nettyVersion = "4.2.17.Final" val arrowDependencies = Seq( // flight-core bundles the gRPC transport since Arrow 16; the standalone // flight-grpc artifact was discontinued after 15.0.2. @@ -277,7 +277,7 @@ libraryDependencies ++= Seq( // into slf4j (and on to logback). "org.apache.logging.log4j" % "log4j-1.2-api" % log4jVersion, "org.apache.logging.log4j" % "log4j-to-slf4j" % log4jVersion, - "org.postgresql" % "postgresql" % "42.7.10" + "org.postgresql" % "postgresql" % "42.7.13" ) ///////////////////////////////////////////////////////////////////////////// @@ -287,16 +287,16 @@ libraryDependencies ++= Seq( libraryDependencies ++= Seq( "com.github.sisyphsu" % "dateparser" % "1.0.11", // DateParser "com.google.guava" % "guava" % "31.1-jre", // Guava - "org.ehcache" % "sizeof" % "0.4.3", // Ehcache SizeOf + "org.ehcache" % "sizeof" % "0.4.4", // Ehcache SizeOf "org.jgrapht" % "jgrapht-core" % "1.4.0", // JGraphT Core - "com.typesafe.scala-logging" %% "scala-logging" % "3.9.5", // Scala Logging - "org.eclipse.jgit" % "org.eclipse.jgit" % "5.13.0.202109080827-r", // jgit + "com.typesafe.scala-logging" %% "scala-logging" % "3.9.6", // Scala Logging + "org.eclipse.jgit" % "org.eclipse.jgit" % "5.13.5.202508271544-r", // jgit // commons-vfs2 pulls hadoop-hdfs-client (for its HDFS provider), which drags in the // Hadoop client stack and, via 3.5.0, the Jersey 2.x/JAXB web stack; exclude it here too. "org.apache.commons" % "commons-vfs2" % "2.9.0" excludeAll(excludeHadoopJersey2Stack: _*), // for FileResolver throw VFS-related exceptions "io.lakefs" % "sdk" % "1.51.0", // for lakeFS api calls - "com.typesafe" % "config" % "1.4.6", // config reader - "org.apache.commons" % "commons-jcs3-core" % "3.2", // Apache Commons JCS + "com.typesafe" % "config" % "1.4.9", // config reader + "org.apache.commons" % "commons-jcs3-core" % "3.2.1", // Apache Commons JCS "software.amazon.awssdk" % "s3" % "2.29.51" excludeAll( ExclusionRule(organization = "io.netty") ), diff --git a/common/workflow-operator/build.sbt b/common/workflow-operator/build.sbt index 7fb262cda53..7c6344f03ae 100644 --- a/common/workflow-operator/build.sbt +++ b/common/workflow-operator/build.sbt @@ -66,7 +66,7 @@ Compile / scalacOptions ++= Seq( libraryDependencies ++= Seq( "org.scalamock" %% "scalamock" % "5.2.0" % Test, // ScalaMock - "org.scalatest" %% "scalatest" % "3.2.15" % Test, // ScalaTest + "org.scalatest" %% "scalatest" % "3.2.20" % Test, // ScalaTest "junit" % "junit" % "4.13.2" % Test, // JUnit "com.novocode" % "junit-interface" % "0.11" % Test // SBT interface for JUnit ) @@ -95,8 +95,8 @@ libraryDependencies ++= Seq( // kjetland libraryDependencies ++= Seq( "javax.validation" % "validation-api" % "2.0.1.Final", - "org.slf4j" % "slf4j-api" % "1.7.26", - "io.github.classgraph" % "classgraph" % "4.8.157", + "org.slf4j" % "slf4j-api" % "1.7.36", + "io.github.classgraph" % "classgraph" % "4.8.195", "ch.qos.logback" % "logback-classic" % "1.2.3" % "test", "com.github.java-json-tools" % "json-schema-validator" % "2.2.14" % "test", "com.fasterxml.jackson.module" % "jackson-module-kotlin" % jacksonVersion % "test", @@ -124,9 +124,9 @@ dependencyOverrides ++= Seq( ///////////////////////////////////////////////////////////////////////////// libraryDependencies ++= Seq( - "com.thesamet.scalapb" %% "scalapb-json4s" % "0.12.0", + "com.thesamet.scalapb" %% "scalapb-json4s" % "0.12.2", "com.github.tototoshi" %% "scala-csv" % "1.3.10", // csv parser - "com.konghq" % "unirest-java" % "3.14.2", + "com.konghq" % "unirest-java" % "3.14.5", "commons-io" % "commons-io" % "2.15.1", "org.apache.commons" % "commons-compress" % "1.27.1", "org.tukaani" % "xz" % "1.9", @@ -134,4 +134,4 @@ libraryDependencies ++= Seq( "org.apache.lucene" % "lucene-analyzers-common" % "8.11.4" ) -libraryDependencies += "io.github.classgraph" % "classgraph" % "4.8.184" % Test +libraryDependencies += "io.github.classgraph" % "classgraph" % "4.8.195" % Test diff --git a/computing-unit-managing-service/build.sbt b/computing-unit-managing-service/build.sbt index 04c403687ed..f95d85c1d07 100644 --- a/computing-unit-managing-service/build.sbt +++ b/computing-unit-managing-service/build.sbt @@ -33,7 +33,7 @@ Universal / mappings := AddMetaInfLicenseFiles.distMappings( ) // Dependency Versions -val dropwizardVersion = "4.0.7" +val dropwizardVersion = "4.0.17" val mockitoVersion = "5.4.0" // Test Dependencies @@ -46,11 +46,11 @@ libraryDependencies ++= Seq( libraryDependencies ++= Seq( "io.dropwizard" % "dropwizard-core" % dropwizardVersion, "io.dropwizard" % "dropwizard-auth" % dropwizardVersion, // Dropwizard Authentication module - "io.kubernetes" % "client-java" % "21.0.0", + "io.kubernetes" % "client-java" % "21.0.2-legacy", "org.jooq" % "jooq" % "3.19.36", "com.typesafe" % "config" % "1.4.9", "com.softwaremill.sttp.client4" %% "core" % "4.0.26", - "com.typesafe.play" %% "play-json" % "2.10.6", + "com.typesafe.play" %% "play-json" % "2.10.8", "io.fabric8" % "kubernetes-client" % "6.12.1" ) diff --git a/config-service/build.sbt b/config-service/build.sbt index de3e034852f..a7cf42af401 100644 --- a/config-service/build.sbt +++ b/config-service/build.sbt @@ -57,7 +57,7 @@ Compile / scalacOptions ++= Seq( // Version Variables ///////////////////////////////////////////////////////////////////////////// -val dropwizardVersion = "4.0.7" +val dropwizardVersion = "4.0.17" val mockitoVersion = "5.4.0" val assertjVersion = "3.27.7" @@ -85,6 +85,6 @@ libraryDependencies ++= Seq( "com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.18.8", "jakarta.ws.rs" % "jakarta.ws.rs-api" % "3.1.0", // Ensure Jakarta JAX-RS API is available "org.bitbucket.b_c" % "jose4j" % "0.9.6", - "org.playframework" %% "play-json" % "3.1.0-M1", + "org.playframework" %% "play-json" % "3.1.0-M10", "com.typesafe" % "config" % "1.4.9" // For configuration management ) \ No newline at end of file diff --git a/file-service/build.sbt b/file-service/build.sbt index defbb99c1fb..3398358de22 100644 --- a/file-service/build.sbt +++ b/file-service/build.sbt @@ -57,7 +57,7 @@ Compile / scalacOptions ++= Seq( // Version Variables ///////////////////////////////////////////////////////////////////////////// -val dropwizardVersion = "4.0.7" +val dropwizardVersion = "4.0.17" val mockitoVersion = "5.4.0" val assertjVersion = "3.27.7" val testcontainersVersion = "0.44.1" @@ -89,5 +89,5 @@ libraryDependencies ++= Seq( "com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.18.8", "jakarta.ws.rs" % "jakarta.ws.rs-api" % "3.1.0", // Ensure Jakarta JAX-RS API is available "org.bitbucket.b_c" % "jose4j" % "0.9.6", - "org.playframework" %% "play-json" % "3.1.0-M1", + "org.playframework" %% "play-json" % "3.1.0-M10", ) diff --git a/notebook-migration-service/build.sbt b/notebook-migration-service/build.sbt index 5714f570b8a..80464687c3a 100644 --- a/notebook-migration-service/build.sbt +++ b/notebook-migration-service/build.sbt @@ -57,7 +57,7 @@ Compile / scalacOptions ++= Seq( // Version Variables ///////////////////////////////////////////////////////////////////////////// -val dropwizardVersion = "4.0.7" +val dropwizardVersion = "4.0.17" val mockitoVersion = "5.4.0" val assertjVersion = "3.27.7" diff --git a/project/plugins.sbt b/project/plugins.sbt index 45cbbac6fe4..7544a19a926 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -16,7 +16,7 @@ // under the License. addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.2") -addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.14.7") +addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.14.8") // Coverage instrumentation; emits jacoco.xml that Codecov consumes. // JaCoCo (vs scoverage) works on JVM bytecode, so it does not need a // per-Scala-version compiler plugin — scalac-scoverage-plugin only diff --git a/workflow-compiling-service/build.sbt b/workflow-compiling-service/build.sbt index 2af92efc4d4..5669e7c04db 100644 --- a/workflow-compiling-service/build.sbt +++ b/workflow-compiling-service/build.sbt @@ -59,7 +59,7 @@ Compile / scalacOptions ++= Seq( // Version Variables ///////////////////////////////////////////////////////////////////////////// -val dropwizardVersion = "4.0.7" +val dropwizardVersion = "4.0.17" val mockitoVersion = "5.4.0" val assertjVersion = "3.27.7"