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 f22022b  Attempt to fix security test failure on JDK13+
f22022b is described below

commit f22022b1f094efdcc81b63d9f3f10b85894fcdb8
Author: reta <[email protected]>
AuthorDate: Sat Jan 18 22:52:21 2020 -0500

    Attempt to fix security test failure on JDK13+
---
 parent/pom.xml         | 22 +++++++++++++++++++++-
 systests/jaxrs/pom.xml | 22 ----------------------
 2 files changed, 21 insertions(+), 23 deletions(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index f3deb8f..4109cda 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -2905,6 +2905,26 @@
                     <version>1.0.6.Final</version>
                 </dependency>
             </dependencies>
-       </profile>
+        </profile>
+        <profile>
+            <id>jdk13</id>
+            <activation>
+                <jdk>[13,)</jdk>
+            </activation>
+            <build>
+                <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>
+            </build>
+        </profile>
     </profiles>
 </project>
diff --git a/systests/jaxrs/pom.xml b/systests/jaxrs/pom.xml
index af4b98a..e1e2064 100644
--- a/systests/jaxrs/pom.xml
+++ b/systests/jaxrs/pom.xml
@@ -664,27 +664,5 @@
                 </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>

Reply via email to