Skip to content
Merged
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 common/auth/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Compile / scalacOptions ++= Seq(

// Core Dependencies
libraryDependencies ++= Seq(
"com.typesafe" % "config" % "1.4.3", // config reader
"com.typesafe" % "config" % "1.4.6", // config reader
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.5", // 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
Expand Down
2 changes: 1 addition & 1 deletion common/config/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@ Compile / scalacOptions ++= Seq(

// Core Dependencies
libraryDependencies ++= Seq(
"com.typesafe" % "config" % "1.4.2" // For configuration management
"com.typesafe" % "config" % "1.4.6" // For configuration management
)
2 changes: 1 addition & 1 deletion common/workflow-core/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ libraryDependencies ++= Seq(
"org.eclipse.jgit" % "org.eclipse.jgit" % "5.13.0.202109080827-r", // jgit
"org.apache.commons" % "commons-vfs2" % "2.9.0", // for FileResolver throw VFS-related exceptions
"io.lakefs" % "sdk" % "1.51.0", // for lakeFS api calls
"com.typesafe" % "config" % "1.4.3", // config reader
"com.typesafe" % "config" % "1.4.6", // config reader
"org.apache.commons" % "commons-jcs3-core" % "3.2", // Apache Commons JCS
"software.amazon.awssdk" % "s3" % "2.29.51" excludeAll(
ExclusionRule(organization = "io.netty")
Expand Down
5 changes: 2 additions & 3 deletions computing-unit-managing-service/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,8 @@ libraryDependencies ++= Seq(
"io.dropwizard" % "dropwizard-auth" % dropwizardVersion, // Dropwizard Authentication module
"io.kubernetes" % "client-java" % "21.0.0",
"org.jooq" % "jooq" % "3.14.16",
"com.typesafe" % "config" % "1.4.1",
"com.typesafe" % "config" % "1.4.6",
"com.softwaremill.sttp.client4" %% "core" % "4.0.0-M6",
"com.typesafe" % "config" % "1.4.2",
"com.typesafe.play" %% "play-json" % "2.10.6",
"io.fabric8" % "kubernetes-client" % "6.12.1"
)
Expand All @@ -47,4 +46,4 @@ Compile / scalacOptions ++= Seq(
"-feature",
"-deprecation",
"-Ywarn-unused:imports"
)
)
2 changes: 1 addition & 1 deletion config-service/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -80,5 +80,5 @@ libraryDependencies ++= Seq(
"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",
"com.typesafe" % "config" % "1.4.2" // For configuration management
"com.typesafe" % "config" % "1.4.6" // For configuration management
)
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ addSbtPlugin("org.typelevel" % "sbt-fs2-grpc" % "2.11.0")
// JOOQ dependencies for code generation
libraryDependencies ++= Seq(
"org.jooq" % "jooq-codegen" % "3.16.23",
"com.typesafe" % "config" % "1.4.3",
"com.typesafe" % "config" % "1.4.6",
"org.postgresql" % "postgresql" % "42.7.4"
)
Loading