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

Production ready pekko connectors #390

Merged
merged 1 commit into from
Sep 6, 2023
Merged
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
7 changes: 3 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ val Versions = new {
val Log4Cats = "2.6.0"
val Weaver = "0.8.3"
val Laserdisc = "6.0.2"
val PekkoConnectors = "1.0.0"
}

lazy val IntegrationTest = config("it") extend Test
Expand Down Expand Up @@ -106,12 +107,10 @@ lazy val activemqPekko = module("activemq-pekko", directory = "connectors")
name := "pass4s-connector-pekko-activemq",
mimaPreviousArtifacts := { // this setting can be removed in 0.5.x
val artifacts = mimaPreviousArtifacts.value
artifacts.filter(_.revision >= "0.4.4") // this module has been published in 0.4.4
artifacts.filter(_.revision >= "0.4.5") // this module has been prod ready in 0.4.5
},
resolvers += "Apache Snapshots" at "https://repository.apache.org/content/repositories/snapshots/", // Resolvers to be removed when stable version is released
resolvers ++= Resolver.sonatypeOssRepos("snapshots"),
libraryDependencies ++= Seq(
"org.apache.pekko" %% "pekko-connectors-jms" % "0.0.0+140-7d704044-SNAPSHOT", // TODO to be changed to stable release once https://github.com/apache/incubator-pekko-connectors/issues/210 is ready
"org.apache.pekko" %% "pekko-connectors-jms" % Versions.PekkoConnectors,
"org.apache.activemq" % "activemq-pool" % Versions.ActiveMq,
"org.typelevel" %% "log4cats-core" % Versions.Log4Cats
),
Expand Down