From 3cca1e6449ec1177ac2d29095e6caae68c0fd769 Mon Sep 17 00:00:00 2001 From: Arek Burdach Date: Wed, 27 Nov 2024 16:56:57 +0100 Subject: [PATCH] build fix --- build.sbt | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/build.sbt b/build.sbt index a32ad01518e..b9c1fe77c02 100644 --- a/build.sbt +++ b/build.sbt @@ -1503,11 +1503,12 @@ lazy val liteK8sDeploymentManager = (project in lite("k8sDeploymentManager")) libraryDependencies ++= { Seq( // From version 4.0.0 onwards, skuber uses pekko instead of akka, so we need to migrate to pekko first - "io.github.hagay3" %% "skuber" % "3.2" exclude ("commons-logging", "commons-logging"), - "com.github.julien-truffaut" %% "monocle-core" % monocleV, - "com.github.julien-truffaut" %% "monocle-macro" % monocleV, - "com.typesafe.akka" %% "akka-slf4j" % akkaV % Test, - "org.wiremock" % "wiremock" % wireMockV % Test, + "io.github.hagay3" %% "skuber" % "3.2" exclude ("commons-logging", "commons-logging"), + "com.github.julien-truffaut" %% "monocle-core" % monocleV, + "com.github.julien-truffaut" %% "monocle-macro" % monocleV, + "com.typesafe.akka" %% "akka-slf4j" % akkaV % Test, + "org.wiremock" % "wiremock" % wireMockV % Test, + "com.softwaremill.sttp.client3" %% "async-http-client-backend-future" % sttpV % Test, ) }, buildAndImportRuntimeImageToK3d := { @@ -1686,9 +1687,10 @@ lazy val httpUtils = (project in utils("http-utils")) name := "nussknacker-http-utils", libraryDependencies ++= { Seq( - "com.softwaremill.sttp.client3" %% "core" % sttpV, - "com.softwaremill.sttp.client3" %% "json-common" % sttpV, - "com.softwaremill.sttp.client3" %% "circe" % sttpV, + "com.softwaremill.sttp.client3" %% "core" % sttpV, + "com.softwaremill.sttp.client3" %% "json-common" % sttpV, + "com.softwaremill.sttp.client3" %% "circe" % sttpV, + "com.softwaremill.sttp.client3" %% "async-http-client-backend-future" % sttpV, ) } )