Skip to content
Open
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
15 changes: 7 additions & 8 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,9 @@ lazy val akkaProvided = List(
"com.typesafe.akka" %% "akka-remote" % akkaVersion % Provided
)
lazy val akkaReal = List(
"com.typesafe.akka" %% "akka-actor" % akkaVersion ,
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion ,
"com.typesafe.akka" %% "akka-remote" % akkaVersion
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
"com.typesafe.akka" %% "akka-remote" % akkaVersion
)
lazy val core = project
.in(file("core"))
Expand All @@ -157,7 +157,7 @@ lazy val core = project
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % "test",
"com.typesafe" % "config" % "1.4.2",
"org.typelevel" %% "cats-effect" % "3.5.3",
"io.github.pityka" %% "selfpackage" % "2.1.0",
"io.github.pityka" %% "selfpackage" % "2.1.3",
"org.scalatest" %% "scalatest" % "3.2.19" % "test",
"com.outr" %% "scribe" % scribeVersion,
"com.outr" %% "scribe-slf4j" % scribeVersion,
Expand Down Expand Up @@ -203,14 +203,13 @@ lazy val kubernetes = project
name := "tasks-kubernetes",
libraryDependencies ++= Seq(
"com.goyeau" %% "kubernetes-client" % "0.11.0",
"io.github.pityka" %% "selfpackage-jib" % "2.1.3",

"io.github.pityka" %% "selfpackage-jib" % "2.1.3"
) ++ akkaProvided
)
.dependsOn(core % "compile->compile;test->test")

lazy val kubernetesTest = project
.in(file("kubernetes-test"))
lazy val kubernetesTest = project
.in(file("kubernetes-test"))
.settings(commonSettings: _*)
.settings(
name := "tasks-kubernetes-test",
Expand Down