Skip to content

Commit

Permalink
fix sloppiness from my previous work
Browse files Browse the repository at this point in the history
  • Loading branch information
colmsnowplow committed Apr 18, 2024
1 parent 2a312ea commit 4640977
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 2 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,8 @@ lazy val sinks = project
Dependencies.Libraries.fs2Kafka,
Dependencies.Libraries.awsRegions,
Dependencies.Libraries.stsSdk % Runtime,
"org.http4s" %% "http4s-ember-client" % "0.23.15",
"org.http4s" %% "http4s-circe" % "0.23.15"
// TODO move this
Dependencies.Libraries.http4sEmber,
Dependencies.Libraries.http4sCirce
),
//libraryDependencies += "org.typelevel" %% "cats-effect" % "3.4.6",
// libraryDependencies += "org.http4s" %% "http4s-ember-client" % "0.23.15",
Expand Down
4 changes: 3 additions & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ object Dependencies {
val kcl = "software.amazon.awssdk" % "kinesis" % V.awsSdk
val awsRegions = "software.amazon.awssdk" % "regions" % V.awsSdk
val http4sClient = "org.http4s" %% "http4s-blaze-client" % V.http4s
val stsSdk = "software.amazon.awssdk" % "sts" % V.awsSdk
val stsSdk = "software.amazon.awssdk" % "sts" % V.awsSdk
val http4sEmber = "org.http4s" %% "http4s-ember-client" % V.http4s
val http4sCirce = "org.http4s" %% "http4s-circe" % V.http4s

// Scala (test only)
val specs2 = "org.specs2" %% "specs2-core" % V.specs2 % Test
Expand Down

0 comments on commit 4640977

Please sign in to comment.