Skip to content

Commit

Permalink
Update dependencies (#4199)
Browse files Browse the repository at this point in the history
Co-authored-by: Simon Dumas <[email protected]>
  • Loading branch information
imsdu and Simon Dumas committed Aug 25, 2023
1 parent 836baae commit 051463e
Showing 1 changed file with 23 additions and 12 deletions.
35 changes: 23 additions & 12 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ val apacheIoVersion = "1.3.2"
val awsSdkVersion = "2.17.184"
val byteBuddyAgentVersion = "1.10.17"
val betterMonadicForVersion = "0.3.1"
val caffeineVersion = "3.1.6"
val caffeineVersion = "3.1.8"
val catsEffectVersion = "2.5.5"
val catsRetryVersion = "2.1.1"
val catsVersion = "2.9.0"
val catsVersion = "2.10.0"
val circeVersion = "0.14.5"
val circeOpticsVersion = "0.14.1"
val circeExtrasVersions = "0.14.3"
val classgraphVersion = "4.8.160"
val classgraphVersion = "4.8.162"
val distageVersion = "1.0.10"
val doobieVersion = "0.13.4"
val fs2Version = "2.5.11"
Expand All @@ -45,8 +45,8 @@ val kamonVersion = "2.6.3"
val kanelaAgentVersion = "1.0.17"
val kindProjectorVersion = "0.13.2"
val log4catsVersion = "1.7.0"
val logbackVersion = "1.4.8"
val magnoliaVersion = "1.1.3"
val logbackVersion = "1.4.11"
val magnoliaVersion = "1.1.4"
val mockitoVersion = "1.17.14"
val monixVersion = "3.4.1"
val monixBioVersion = "1.2.0"
Expand All @@ -58,7 +58,7 @@ val scalaLoggingVersion = "3.9.5"
val scalaTestVersion = "3.2.16"
val scalaXmlVersion = "2.1.0"
val topBraidVersion = "1.3.2" // 1.4.1 fails to validate some test schemas
val testContainersVersion = "1.18.3"
val testContainersVersion = "1.19.0"

lazy val akkaActorTyped = "com.typesafe.akka" %% "akka-actor-typed" % akkaVersion

Expand Down Expand Up @@ -205,7 +205,7 @@ lazy val kernel = project
.settings(name := "delta-kernel", moduleName := "delta-kernel")
.settings(shared, compilation, coverage, release, assertJavaVersion)
.settings(
libraryDependencies ++= Seq(
libraryDependencies ++= Seq(
caffeine,
catsRetry,
circeCore,
Expand All @@ -219,7 +219,7 @@ lazy val kernel = project
scalaTest % Test
),
addCompilerPlugin(kindProjector),
coverageFailOnMinimum := false
coverageFailOnMinimum := false
)

lazy val testkit = project
Expand Down Expand Up @@ -282,7 +282,7 @@ lazy val rdf = project
moduleName := "delta-rdf"
)
.settings(
libraryDependencies ++= Seq(
libraryDependencies ++= Seq(
akkaActorTyped, // Needed to create Uri
akkaHttpCore,
catsCore,
Expand All @@ -299,7 +299,7 @@ lazy val rdf = project
logback % Test,
scalaTest % Test
),
Test / fork := true,
Test / fork := true,
addCompilerPlugin(betterMonadicFor)
)

Expand Down Expand Up @@ -722,7 +722,17 @@ lazy val cargo = taskKey[(File, String)]("Run Cargo to build 'nexus-fixer'")
lazy val storage = project
.in(file("storage"))
.enablePlugins(UniversalPlugin, JavaAppPackaging, JavaAgent, DockerPlugin, BuildInfoPlugin)
.settings(shared, compilation, assertJavaVersion, kamonSettings, storageAssemblySettings, coverage, release, servicePackaging, coverageMinimumStmtTotal := 75)
.settings(
shared,
compilation,
assertJavaVersion,
kamonSettings,
storageAssemblySettings,
coverage,
release,
servicePackaging,
coverageMinimumStmtTotal := 75
)
.settings(cargo := {
import scala.sys.process._

Expand Down Expand Up @@ -1005,7 +1015,8 @@ Global / excludeLintKeys += docs / paradoxRoots
Global / excludeLintKeys += docs / Paradox / paradoxNavigationDepth
Global / concurrentRestrictions += Tags.limit(Tags.Test, 1)

addCommandAlias("review",
addCommandAlias(
"review",
s"""
|;clean
|;scalafmtCheck
Expand Down

0 comments on commit 051463e

Please sign in to comment.