From 97979a83f4eae52aa8a58c4ae1839c96633916bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Pawlik?= Date: Wed, 6 Sep 2023 10:41:56 +0200 Subject: [PATCH] Production ready pekko connectors (#390) --- build.sbt | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/build.sbt b/build.sbt index b3c15041..857c3d1b 100644 --- a/build.sbt +++ b/build.sbt @@ -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 @@ -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 ),