[jboss-jira] [JBoss JIRA] (WFLY-10829) Exclude hornetq-journal from the transitive depenencies
Jeff Mesnil (JIRA)
issues at jboss.org
Mon Aug 13 08:22:00 EDT 2018
Jeff Mesnil created WFLY-10829:
----------------------------------
Summary: Exclude hornetq-journal from the transitive depenencies
Key: WFLY-10829
URL: https://issues.jboss.org/browse/WFLY-10829
Project: WildFly
Issue Type: Bug
Components: JMS
Reporter: Kabir Khan
Assignee: Jeff Mesnil
Although not part of the server runtime, the hornetq-journal is included as a transitive dependency. This fixes it:
{code}
--- pom.xml
+++ pom.xml
@@ -3920,6 +3920,12 @@
<groupId>org.hornetq</groupId>
<artifactId>hornetq-commons</artifactId>
<version>\${version.org.hornetq}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.hornetq</groupId>
+ <artifactId>hornetq-journal</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
@@ -3932,6 +3938,12 @@
<groupId>org.hornetq</groupId>
<artifactId>hornetq-jms-client</artifactId>
<version>\${version.org.hornetq}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.hornetq</groupId>
+ <artifactId>hornetq-journal</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>org.infinispan</groupId>
@@ -4314,6 +4326,10 @@
<version>\${version.org.jboss.ironjacamar}</version>
<exclusions>
<exclusion>
+ <artifactId>ironjacamar-spec-api</artifactId>
+ <groupId>org.jboss.ironjacamar</groupId>
+ </exclusion>
+ <exclusion>
<artifactId>jbossxb</artifactId>
<groupId>org.jboss</groupId>
</exclusion>
@@ -4346,6 +4362,10 @@
<version>\${version.org.jboss.ironjacamar}</version>
<exclusions>
<exclusion>
+ <groupId>org.jboss.ironjacamar</groupId>
+ <artifactId>ironjacamar-spec-api</artifactId>
+ </exclusion>
+ <exclusion>
<artifactId>jboss-integration</artifactId>
<groupId>org.jboss.integration</groupId>
</exclusion>
@@ -4376,6 +4396,10 @@
<version>\${version.org.jboss.ironjacamar}</version>
<exclusions>
<exclusion>
+ <groupId>org.jboss.ironjacamar</groupId>
+ <artifactId>ironjacamar-spec-api</artifactId>
+ </exclusion>
+ <exclusion>
<artifactId>jboss-common-core</artifactId>
<groupId>org.jboss</groupId>
</exclusion>
{code}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
More information about the jboss-jira
mailing list