This is an automated email from the ASF dual-hosted git repository.
clebertsuconic pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
The following commit(s) were added to refs/heads/master by this push:
new 143e401 ARTEMIS-2509 Add some basic support for legacy openwire This
is needed to aid some lift and shift migration from activemq5 where non-java
clients have support for older openwire protocols.
new b4ca5d5 This closes #2856
143e401 is described below
commit 143e401bdb6e80f9070de7a867ec248c305719c7
Author: michael.pearce <[email protected]>
AuthorDate: Mon Sep 30 18:46:35 2019 +0100
ARTEMIS-2509 Add some basic support for legacy openwire
This is needed to aid some lift and shift migration from activemq5 where
non-java clients have support for older openwire protocols.
(cherry picked from commit d497cb6205a5bdbd508d18bead8f9e8e39d6b1ba)
---
artemis-distribution/pom.xml | 4 ++++
artemis-distribution/src/main/assembly/dep.xml | 1 +
pom.xml | 6 ++++++
3 files changed, 11 insertions(+)
diff --git a/artemis-distribution/pom.xml b/artemis-distribution/pom.xml
index 93350ee..eff9cff 100644
--- a/artemis-distribution/pom.xml
+++ b/artemis-distribution/pom.xml
@@ -164,6 +164,10 @@
<artifactId>activemq-client</artifactId>
</dependency>
<dependency>
+ <groupId>org.apache.activemq</groupId>
+ <artifactId>activemq-openwire-legacy</artifactId>
+ </dependency>
+ <dependency>
<groupId>org.eclipse.jetty.aggregate</groupId>
<artifactId>jetty-all</artifactId>
<type>jar</type>
diff --git a/artemis-distribution/src/main/assembly/dep.xml
b/artemis-distribution/src/main/assembly/dep.xml
index c877861..3933508 100644
--- a/artemis-distribution/src/main/assembly/dep.xml
+++ b/artemis-distribution/src/main/assembly/dep.xml
@@ -87,6 +87,7 @@
<include>io.netty:netty-tcnative-boringssl-static</include>
<include>org.apache.qpid:proton-j</include>
<include>org.apache.activemq:activemq-client</include>
+ <include>org.apache.activemq:activemq-openwire-legacy</include>
<include>org.slf4j:slf4j-api</include>
<include>io.airlift:airline</include>
<include>com.google.guava:guava</include>
diff --git a/pom.xml b/pom.xml
index 7eb2ac3..1373730 100644
--- a/pom.xml
+++ b/pom.xml
@@ -569,6 +569,12 @@
<!-- License: Apache 2.0 -->
</dependency>
<dependency>
+ <groupId>org.apache.activemq</groupId>
+ <artifactId>activemq-openwire-legacy</artifactId>
+ <version>${activemq5-version}</version>
+ <!-- License: Apache 2.0 -->
+ </dependency>
+ <dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>