This is an automated email from the ASF dual-hosted git repository.
reta pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cxf.git
The following commit(s) were added to refs/heads/master by this push:
new 95c3c37 Attempt to fix security test failure on JDK13+
95c3c37 is described below
commit 95c3c37092751b1d00b6f2c26642f18ebcbba878
Author: reta <[email protected]>
AuthorDate: Sat Jan 18 19:34:07 2020 -0500
Attempt to fix security test failure on JDK13+
---
systests/jaxrs/pom.xml | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/systests/jaxrs/pom.xml b/systests/jaxrs/pom.xml
index e1e2064..af4b98a 100644
--- a/systests/jaxrs/pom.xml
+++ b/systests/jaxrs/pom.xml
@@ -664,5 +664,27 @@
</dependency>
</dependencies>
</profile>
+ <profile>
+ <id>jdk13</id>
+ <activation>
+ <jdk>[13,)</jdk>
+ </activation>
+ <build>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <systemPropertyVariables>
+ <!--
https://github.com/bcgit/bc-java/issues/589 -->
+
<jdk.tls.namedGroups>secp256r1,secp384r1,secp521r1,sect283k1,sect283r1,sect409k1,sect409r1,sect571k1,sect571r1,secp256k1,ffdhe2048,ffdhe3072,ffdhe4096,ffdhe6144,ffdhe8192</jdk.tls.namedGroups>
+ </systemPropertyVariables>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+ </profile>
</profiles>
</project>