Skip to content

Commit

Permalink
Setting up module for Azure storage akka#3253
Browse files Browse the repository at this point in the history
  • Loading branch information
sfali committed Aug 23, 2024
1 parent bdbb4f8 commit 06eac15
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,8 @@ lazy val azureStorageQueue = alpakkaProject(
Scala3.settings
)

lazy val azureStorage = alpakkaProject("azure-storage", "azure.storage", Dependencies.AzureStorage, Scala3.settings)

lazy val cassandra =
alpakkaProject("cassandra", "cassandra", Dependencies.Cassandra)
.settings(Scala3.settings)
Expand Down
10 changes: 10 additions & 0 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,16 @@ object Dependencies {
)
)

val AzureStorage = Seq(
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-http" % AkkaHttpVersion,
"com.typesafe.akka" %% "akka-http-xml" % AkkaHttpVersion,
// in-memory filesystem for file related tests
"com.google.jimfs" % "jimfs" % "1.3.0" % Test, // ApacheV2
wiremock
)
)

val CassandraVersionInDocs = "4.0"
val CassandraDriverVersion = "4.17.0"
val CassandraDriverVersionInDocs = "4.17"
Expand Down

0 comments on commit 06eac15

Please sign in to comment.