Skip to content

Commit

Permalink
fix a few connectors, part2, fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-alfers committed Sep 27, 2024
1 parent f1a8fbb commit 265720f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ object Dependencies {
val AkkaGrpcBinaryVersion = "2.4"
// sync ignore prefix in scripts/link-validator.conf#L30
val AkkaHttpVersion = "10.7.0-M1"
val AkkaHttpBinaryVersion = VersionNumber(AkkaHttpVersion).numbers match { case Seq(major, minor, _*) => s"$major.$minor" }
val AkkaHttpBinaryVersion = VersionNumber(AkkaHttpVersion).numbers match {
case Seq(major, minor, _*) => s"$major.$minor"
}
val AlpakkaKafkaVersion = "7.0.0-M1"
val ScalaTestVersion = "3.2.19"
val TestContainersScalaTestVersion = "0.40.3" // pulls Testcontainers 1.16.2
Expand Down Expand Up @@ -151,6 +153,7 @@ object Dependencies {
(
ExclusionRule(organization = "com.typesafe.akka")
),
"org.scala-lang.modules" %% "scala-java8-compat" % "1.0.2",
"software.amazon.awssdk" % "dynamodb" % AwsSdk2Version excludeAll // ApacheV2
(
ExclusionRule("software.amazon.awssdk", "apache-client"),
Expand Down Expand Up @@ -499,6 +502,7 @@ object Dependencies {
(
ExclusionRule(organization = "com.typesafe.akka")
),
"org.scala-lang.modules" %% "scala-java8-compat" % "1.0.2",
"software.amazon.awssdk" % "sns" % AwsSdk2Version excludeAll // ApacheV2
(
ExclusionRule("software.amazon.awssdk", "apache-client"),
Expand Down

0 comments on commit 265720f

Please sign in to comment.