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 2020/06/19 13:57:02 UTC

[activemq-artemis] branch master updated: ARTEMIS-2813: also exclude Core client kerberos-via-TLS test that can never work on JDK11+ as the ciphers were removed

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 50bf1ef  ARTEMIS-2813: also exclude Core client kerberos-via-TLS test that can never work on JDK11+ as the ciphers were removed
50bf1ef is described below

commit 50bf1efeef028adb3eeb5106ae49e62b1d60f8e5
Author: Robbie Gemmell <ro...@apache.org>
AuthorDate: Fri Jun 19 14:55:27 2020 +0100

    ARTEMIS-2813: also exclude Core client kerberos-via-TLS test that can never work on JDK11+ as the ciphers were removed
---
 tests/integration-tests/pom.xml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/tests/integration-tests/pom.xml b/tests/integration-tests/pom.xml
index 85e3420..f6aaf442 100644
--- a/tests/integration-tests/pom.xml
+++ b/tests/integration-tests/pom.xml
@@ -525,8 +525,13 @@
                      <artifactId>maven-surefire-plugin</artifactId>
                      <configuration>
                         <excludes combine.children="append">
+                           <!-- These fail, likely due to due to isues with the old Kerberos test harness bits -->
                            <exclude>**/JMSSaslGssapiTest.java</exclude>
                            <exclude>**/SaslKrb5LDAPSecurityTest.java</exclude>
+
+                           <!-- This is no longer possible on JDK11 because the old KRB5 cipher suites it requires were
+                                removed from JDK11 while adding TLS 1.3 support http://openjdk.java.net/jeps/332 -->
+                           <exclude>**/CoreClientOverOneWaySSLKerb5Test.java</exclude>
                         </excludes>
                      </configuration>
                   </plugin>