This is an automated email from the ASF dual-hosted git repository.

gtully pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git


The following commit(s) were added to refs/heads/main by this push:
     new 6a346e7  ARTEMIS-3470 - exclude junit5 transitive deps - to allow 
junit introspection to work with our junit version
6a346e7 is described below

commit 6a346e71d4e267a9e0663a6db4dc210f9dbb3cf3
Author: gtully <gary.tu...@gmail.com>
AuthorDate: Fri Sep 10 13:32:28 2021 +0100

    ARTEMIS-3470 - exclude junit5 transitive deps - to allow junit 
introspection to work with our junit version
---
 artemis-quorum-ri/pom.xml         | 6 ++++++
 tests/compatibility-tests/pom.xml | 6 ++++++
 2 files changed, 12 insertions(+)

diff --git a/artemis-quorum-ri/pom.xml b/artemis-quorum-ri/pom.xml
index 3bc5b41..0924d2c 100644
--- a/artemis-quorum-ri/pom.xml
+++ b/artemis-quorum-ri/pom.xml
@@ -48,6 +48,12 @@
          <groupId>org.apache.curator</groupId>
          <artifactId>curator-test</artifactId>
          <version>${curator.version}</version>
+         <exclusions>
+            <exclusion>
+               <groupId>org.junit.jupiter</groupId>
+               <artifactId>junit-jupiter-api</artifactId>
+            </exclusion>
+         </exclusions>
       </dependency>
       <dependency>
          <groupId>org.apache.activemq</groupId>
diff --git a/tests/compatibility-tests/pom.xml 
b/tests/compatibility-tests/pom.xml
index 6b28b4b..e446063 100644
--- a/tests/compatibility-tests/pom.xml
+++ b/tests/compatibility-tests/pom.xml
@@ -171,6 +171,12 @@
          <artifactId>groovy-all</artifactId>
          <version>${groovy.version}</version>
          <type>pom</type>
+         <exclusions>
+            <exclusion>
+               <groupId>org.codehaus.groovy</groupId>
+               <artifactId>groovy-test-junit5</artifactId>
+            </exclusion>
+         </exclusions>
       </dependency>
       <dependency>
          <groupId>org.apache.activemq</groupId>

Reply via email to