Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add sts dependency #81

Open
wants to merge 2 commits into
base: always-defined-tstamps
Choose a base branch
from
Open
Show file tree
Hide file tree
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
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
10 changes: 6 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,12 @@ lazy val core = project
Dependencies.Libraries.collectorPayload,
Dependencies.Libraries.slf4j,
Dependencies.Libraries.thrift,
Dependencies.Libraries.stsSdk % Runtime,
// Scala (test only)
Dependencies.Libraries.specs2Scalacheck,
Dependencies.Libraries.specs2,
Dependencies.Libraries.specs2Cats
Dependencies.Libraries.specs2Cats,

)
)

Expand Down Expand Up @@ -71,9 +73,9 @@ lazy val sinks = project
Dependencies.Libraries.fs2Pubsub,
Dependencies.Libraries.fs2Kafka,
Dependencies.Libraries.awsRegions,
"org.http4s" %% "http4s-ember-client" % "0.23.15",
"org.http4s" %% "http4s-circe" % "0.23.15"
// TODO move this
Dependencies.Libraries.stsSdk % Runtime,
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
7 changes: 5 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ object Dependencies {
val badRows = "2.1.1"
val httpClient = "4.5.13"
val thrift = "0.15.0" // override transitive dependency to mitigate security vulnerabilities
val http4s = "0.23.15"
val http4s = "0.23.15"
}

object Libraries {
Expand All @@ -67,7 +67,10 @@ object Dependencies {
val slf4j = "org.slf4j" % "slf4j-simple" % V.slf4j
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 http4sClient = "org.http4s" %% "http4s-blaze-client" % V.http4s
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
Loading