Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion access-control-service/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
14 changes: 7 additions & 7 deletions amber/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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",
Expand Down Expand Up @@ -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"
)

Expand Down Expand Up @@ -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"
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions amber/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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")
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
// 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
Expand Down Expand Up @@ -228,7 +228,7 @@
Test / forkOptions := (Test / forkOptions).value
.withWorkingDirectory((ThisBuild / baseDirectory).value),
Test / testGrouping := (Test / definedTests).value.map { suite =>
Tests.Group(suite.name, Seq(suite), Tests.SubProcess((Test / forkOptions).value))

Check warning on line 231 in build.sbt

View workflow job for this annotation

GitHub Actions / Bench

The evaluation of `/` inside an anonymous function is prohibited.

Check warning on line 231 in build.sbt

View workflow job for this annotation

GitHub Actions / Bench

The evaluation of `/` inside an anonymous function is prohibited.

Check warning on line 231 in build.sbt

View workflow job for this annotation

GitHub Actions / build / amber (ubuntu-latest, 17)

The evaluation of `/` inside an anonymous function is prohibited.

Check warning on line 231 in build.sbt

View workflow job for this annotation

GitHub Actions / build / amber-integration (ubuntu-latest, 17)

The evaluation of `/` inside an anonymous function is prohibited.

Check warning on line 231 in build.sbt

View workflow job for this annotation

GitHub Actions / build / amber-integration (macos-latest, 17)

The evaluation of `/` inside an anonymous function is prohibited.

Check warning on line 231 in build.sbt

View workflow job for this annotation

GitHub Actions / build / platform (notebook-migration-service)

The evaluation of `/` inside an anonymous function is prohibited.

Check warning on line 231 in build.sbt

View workflow job for this annotation

GitHub Actions / build / platform (file-service)

The evaluation of `/` inside an anonymous function is prohibited.

Check warning on line 231 in build.sbt

View workflow job for this annotation

GitHub Actions / build / platform-integration (notebook-migration-service)

The evaluation of `/` inside an anonymous function is prohibited.

Check warning on line 231 in build.sbt

View workflow job for this annotation

GitHub Actions / build / platform-integration (access-control-service)

The evaluation of `/` inside an anonymous function is prohibited.

Check warning on line 231 in build.sbt

View workflow job for this annotation

GitHub Actions / build / platform (access-control-service)

The evaluation of `/` inside an anonymous function is prohibited.

Check warning on line 231 in build.sbt

View workflow job for this annotation

GitHub Actions / build / platform (config-service)

The evaluation of `/` inside an anonymous function is prohibited.

Check warning on line 231 in build.sbt

View workflow job for this annotation

GitHub Actions / build / platform-integration (config-service)

The evaluation of `/` inside an anonymous function is prohibited.

Check warning on line 231 in build.sbt

View workflow job for this annotation

GitHub Actions / build / platform-integration (workflow-compiling-service)

The evaluation of `/` inside an anonymous function is prohibited.

Check warning on line 231 in build.sbt

View workflow job for this annotation

GitHub Actions / build / platform-integration (file-service)

The evaluation of `/` inside an anonymous function is prohibited.

Check warning on line 231 in build.sbt

View workflow job for this annotation

GitHub Actions / build / platform (workflow-compiling-service)

The evaluation of `/` inside an anonymous function is prohibited.

Check warning on line 231 in build.sbt

View workflow job for this annotation

GitHub Actions / build / platform-integration (computing-unit-managing-service)

The evaluation of `/` inside an anonymous function is prohibited.

Check warning on line 231 in build.sbt

View workflow job for this annotation

GitHub Actions / build / platform (computing-unit-managing-service)

The evaluation of `/` inside an anonymous function is prohibited.
}
)

Expand Down Expand Up @@ -257,10 +257,10 @@
"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
Expand Down
12 changes: 6 additions & 6 deletions common/auth/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
4 changes: 2 additions & 2 deletions common/config/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
)
6 changes: 3 additions & 3 deletions common/dao/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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"
)
4 changes: 2 additions & 2 deletions common/pybuilder/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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

)
Expand Down
2 changes: 1 addition & 1 deletion common/resource/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
)
2 changes: 1 addition & 1 deletion common/util/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
)
2 changes: 1 addition & 1 deletion common/workflow-compiler/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
18 changes: 9 additions & 9 deletions common/workflow-core/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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"
)

/////////////////////////////////////////////////////////////////////////////
Expand All @@ -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")
),
Expand Down
12 changes: 6 additions & 6 deletions common/workflow-operator/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -124,14 +124,14 @@ 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",
"com.univocity" % "univocity-parsers" % "2.9.1",
"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
6 changes: 3 additions & 3 deletions computing-unit-managing-service/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
)

Expand Down
4 changes: 2 additions & 2 deletions config-service/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down Expand Up @@ -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
)
4 changes: 2 additions & 2 deletions file-service/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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",
)
2 changes: 1 addition & 1 deletion notebook-migration-service/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion workflow-compiling-service/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
Loading