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

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


The following commit(s) were added to refs/heads/master by this push:
     new 932544f  ARTEMIS-2813: only run the kerberos tests on JDK8 for now
932544f is described below

commit 932544f832603c0335a4ef1fb0daba6d38274d98
Author: Robbie Gemmell <rob...@apache.org>
AuthorDate: Fri Jun 19 10:44:03 2020 +0100

    ARTEMIS-2813: only run the kerberos tests on JDK8 for now
---
 tests/integration-tests/pom.xml | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/tests/integration-tests/pom.xml b/tests/integration-tests/pom.xml
index e72d392..85e3420 100644
--- a/tests/integration-tests/pom.xml
+++ b/tests/integration-tests/pom.xml
@@ -511,4 +511,28 @@
       </plugins>
    </build>
 
+   <profiles>
+      <profile>
+         <id>jdk11on-excludes</id>
+            <activation>
+         <jdk>[11,)</jdk>
+         </activation>
+         <build>
+            <pluginManagement>
+               <plugins>
+                  <plugin>
+                     <groupId>org.apache.maven.plugins</groupId>
+                     <artifactId>maven-surefire-plugin</artifactId>
+                     <configuration>
+                        <excludes combine.children="append">
+                           <exclude>**/JMSSaslGssapiTest.java</exclude>
+                           <exclude>**/SaslKrb5LDAPSecurityTest.java</exclude>
+                        </excludes>
+                     </configuration>
+                  </plugin>
+               </plugins>
+            </pluginManagement>
+         </build>
+      </profile>
+   </profiles>
 </project>

Reply via email to