Browse Source

Use offical JSON API jar rather than Geronimo's in Artemis starter

Closes gh-14691
pull/11125/merge
Andy Wilkinson 8 years ago
parent
commit
5bbdca8cdb
  1. 16
      spring-boot-project/spring-boot-dependencies/pom.xml
  2. 4
      spring-boot-project/spring-boot-starters/spring-boot-starter-artemis/pom.xml

16
spring-boot-project/spring-boot-dependencies/pom.xml

@ -1374,6 +1374,12 @@ @@ -1374,6 +1374,12 @@
<groupId>org.apache.activemq</groupId>
<artifactId>artemis-core-client</artifactId>
<version>${artemis.version}</version>
<exclusions>
<exclusion>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-json_1.0_spec</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
@ -1384,6 +1390,12 @@ @@ -1384,6 +1390,12 @@
<groupId>org.apache.activemq</groupId>
<artifactId>artemis-jms-server</artifactId>
<version>${artemis.version}</version>
<exclusions>
<exclusion>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-json_1.0_spec</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
@ -1409,6 +1421,10 @@ @@ -1409,6 +1421,10 @@
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-json_1.0_spec</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>

4
spring-boot-project/spring-boot-starters/spring-boot-starter-artemis/pom.xml

@ -36,5 +36,9 @@ @@ -36,5 +36,9 @@
<groupId>javax.jms</groupId>
<artifactId>javax.jms-api</artifactId>
</dependency>
<dependency>
<groupId>javax.json</groupId>
<artifactId>javax.json-api</artifactId>
</dependency>
</dependencies>
</project>

Loading…
Cancel
Save