Skip to content

Commit

Permalink
Typo fix and cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
colmsnowplow committed Apr 18, 2024
1 parent 02cdb44 commit 6afed4b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,8 +249,8 @@ Aside from "output" configuration, all fields in the configuration file are opti
// }
// "type": "Kinesis"
// Required: Kinesis stream URI
// "uri": "my-kinesis-stream",
// Required: Kinesis stream name
// "streamName": "my-kinesis-stream",
// Optional: Region where Kinesis stream runs
// "region": "eu-central-1"
Expand Down
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 6afed4b

Please sign in to comment.