From c71f5620014ef454e5e3b6b66c0466dad8c166b3 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Tue, 10 May 2016 14:38:28 +0100 Subject: [PATCH] Provide dependency management for more of Apache Artemis Previously, dependency management was provided for artemis-jms-client and artemis-jms-server, but none of the other Artermis modules upon which they depend. This made it possible for a mixture of versions to end up on the classpath. This commit adds dependency management for all of the Artemis modules upon which artemis-jms-client and artemis-jms-server depends. It also adds dependency management for artermis-amqp-protocol as proposed in gh-5818 Closes gh-5818 Closes gh-5914 --- spring-boot-dependencies/pom.xml | 40 ++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/spring-boot-dependencies/pom.xml b/spring-boot-dependencies/pom.xml index 0de8f032bb..f211ed00c1 100644 --- a/spring-boot-dependencies/pom.xml +++ b/spring-boot-dependencies/pom.xml @@ -1166,6 +1166,21 @@ activemq-web ${activemq.version} + + org.apache.activemq + artemis-amqp-protocol + ${artemis.version} + + + org.apache.activemq + artemis-commons + ${artemis.version} + + + org.apache.activemq + artemis-core-client + ${artemis.version} + org.apache.activemq artemis-jms-client @@ -1176,6 +1191,31 @@ artemis-jms-server ${artemis.version} + + org.apache.activemq + artemis-journal + ${artemis.version} + + + org.apache.activemq + artemis-native + ${artemis.version} + + + org.apache.activemq + artemis-selector + ${artemis.version} + + + org.apache.activemq + artemis-server + ${artemis.version} + + + org.apache.activemq + artemis-service-extensions + ${artemis.version} + org.apache.commons commons-dbcp2