Upgrade to JMS API 2.0

Closes gh-7049
This commit is contained in:
Andy Wilkinson
2016-09-29 20:33:21 +01:00
parent 4d64c9c93d
commit f82dc8e043
14 changed files with 117 additions and 9 deletions

View File

@@ -29,6 +29,16 @@
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-broker</artifactId>
<exclusions>
<exclusion>
<artifactId>geronimo-jms_1.1_spec</artifactId>
<groupId>org.apache.geronimo.specs</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>javax.jms</groupId>
<artifactId>javax.jms-api</artifactId>
</dependency>
</dependencies>
</project>

View File

@@ -29,6 +29,16 @@
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>artemis-jms-client</artifactId>
<exclusions>
<exclusion>
<artifactId>geronimo-jms_2.0_spec</artifactId>
<groupId>org.apache.geronimo.specs</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>javax.jms</groupId>
<artifactId>javax.jms-api</artifactId>
</dependency>
</dependencies>
</project>

View File

@@ -24,7 +24,7 @@
</dependency>
<dependency>
<groupId>javax.jms</groupId>
<artifactId>jms-api</artifactId>
<artifactId>javax.jms-api</artifactId>
</dependency>
<dependency>
<groupId>javax.transaction</groupId>