From a5066f4d7a9651c42fcf09f0957916b5d9caee4e Mon Sep 17 00:00:00 2001 From: Venil Noronha Date: Sat, 21 May 2016 23:43:32 +0530 Subject: [PATCH] Add activemq starter Closes gh-6003 --- spring-boot-starters/pom.xml | 1 + .../spring-boot-starter-activemq/pom.xml | 38 +++++++++++++++++++ .../main/resources/META-INF/spring.provides | 1 + 3 files changed, 40 insertions(+) create mode 100644 spring-boot-starters/spring-boot-starter-activemq/pom.xml create mode 100644 spring-boot-starters/spring-boot-starter-activemq/src/main/resources/META-INF/spring.provides diff --git a/spring-boot-starters/pom.xml b/spring-boot-starters/pom.xml index ebafef6c88..afbe766a16 100644 --- a/spring-boot-starters/pom.xml +++ b/spring-boot-starters/pom.xml @@ -21,6 +21,7 @@ spring-boot-starter + spring-boot-starter-activemq spring-boot-starter-amqp spring-boot-starter-aop spring-boot-starter-artemis diff --git a/spring-boot-starters/spring-boot-starter-activemq/pom.xml b/spring-boot-starters/spring-boot-starter-activemq/pom.xml new file mode 100644 index 0000000000..c283830311 --- /dev/null +++ b/spring-boot-starters/spring-boot-starter-activemq/pom.xml @@ -0,0 +1,38 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starters + 1.4.0.BUILD-SNAPSHOT + + spring-boot-starter-activemq + Spring Boot ActiveMQ Starter + Starter for JMS messaging using Apache ActiveMQ + http://projects.spring.io/spring-boot/ + + Pivotal Software, Inc. + http://www.spring.io + + + ${basedir}/../.. + + + + org.springframework.boot + spring-boot-starter + + + org.springframework + spring-jms + + + org.apache.activemq + activemq-broker + + + org.apache.activemq + activemq-pool + + + diff --git a/spring-boot-starters/spring-boot-starter-activemq/src/main/resources/META-INF/spring.provides b/spring-boot-starters/spring-boot-starter-activemq/src/main/resources/META-INF/spring.provides new file mode 100644 index 0000000000..becec732bd --- /dev/null +++ b/spring-boot-starters/spring-boot-starter-activemq/src/main/resources/META-INF/spring.provides @@ -0,0 +1 @@ +provides: activemq-broker,activemq-pool,spring-jms