ARTEMIS-2813: only run the kerberos tests on JDK8 for now

This commit is contained in:
Robbie Gemmell 2020-06-19 10:44:03 +01:00
parent 960a92410d
commit 932544f832
1 changed files with 24 additions and 0 deletions

View File

@ -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>