ARTEMIS-2557 don't export openwire-protocol JMS spec dep

This commit is contained in:
Justin Bertram 2019-12-03 11:29:23 -06:00 committed by Clebert Suconic
parent 8a37436a40
commit eeaeba6354
1 changed files with 9 additions and 0 deletions

View File

@ -45,6 +45,12 @@
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-client</artifactId>
<exclusions>
<exclusion>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-jms_1.1_spec</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
@ -87,10 +93,13 @@
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
</dependency>
<!-- The OpenWire protocol implementation should really only ever be used in conjuction with
the broker which will have it's own JMS interface dependency so using "provided" scope here -->
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-jms_1.1_spec</artifactId>
<version>1.1.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>