[
https://issues.jboss.org/browse/WFLY-10827?page=com.atlassian.jira.plugin...
]
Jeff Mesnil updated WFLY-10827:
-------------------------------
Description:
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>
{code}
was:
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>
Exclude hornetq-journal from the transitive depenencies
-------------------------------------------------------
Key: WFLY-10827
URL:
https://issues.jboss.org/browse/WFLY-10827
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>
{code}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)