You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ro...@apache.org on 2022/06/09 17:25:06 UTC

[activemq-artemis] 03/03: ARTEMIS-3410: also disable related test in integration-tests module on Java 16+ for now

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

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

commit 88bb73323287af18f7bac8717842c045aab81af4
Author: Robbie Gemmell <ro...@apache.org>
AuthorDate: Thu Jun 9 17:28:10 2022 +0100

    ARTEMIS-3410: also disable related test in integration-tests module on Java 16+ for now
---
 tests/integration-tests/pom.xml | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/tests/integration-tests/pom.xml b/tests/integration-tests/pom.xml
index d724481666..8b391cb314 100644
--- a/tests/integration-tests/pom.xml
+++ b/tests/integration-tests/pom.xml
@@ -610,6 +610,21 @@
          <properties>
             <its-surefire-extra-args>--add-exports java.security.jgss/sun.security.krb5=ALL-UNNAMED</its-surefire-extra-args>
          </properties>
+         <build>
+            <pluginManagement>
+               <plugins>
+                  <plugin>
+                     <groupId>org.apache.maven.plugins</groupId>
+                     <artifactId>maven-surefire-plugin</artifactId>
+                     <configuration>
+                        <excludes>
+                           <exclude>**/integration/karaf/ArtemisFeatureTest.java</exclude>
+                        </excludes>
+                     </configuration>
+                  </plugin>
+               </plugins>
+            </pluginManagement>
+         </build>
       </profile>
    </profiles>
 </project>