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

reta pushed a commit to branch 3.6.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf.git


The following commit(s) were added to refs/heads/3.6.x-fixes by this push:
     new 879c724733 Disable OSGi tests on JDK-19 and above since Apache Karaf 
does not support these JDKs yet
879c724733 is described below

commit 879c7247330214964633dd00f975c239779a5611
Author: Andriy Redko <[email protected]>
AuthorDate: Sun Apr 9 10:37:08 2023 -0400

    Disable OSGi tests on JDK-19 and above since Apache Karaf does not support 
these JDKs yet
---
 osgi/itests/pom.xml                      | 13 +++++++++++++
 services/sts/systests/sts-itests/pom.xml | 10 ++++++++++
 services/xkms/xkms-itests/pom.xml        | 13 +++++++++++++
 3 files changed, 36 insertions(+)

diff --git a/osgi/itests/pom.xml b/osgi/itests/pom.xml
index 27f36885af..20ae7f083f 100644
--- a/osgi/itests/pom.xml
+++ b/osgi/itests/pom.xml
@@ -244,4 +244,17 @@
             </plugins>
         </pluginManagement>
     </build>
+
+    <!-- Apache Karaf does not support JDK-19+ yet --> 
+    <profiles>
+        <profile>
+            <id>skip-tests</id>
+            <activation>
+                <jdk>[19,)</jdk>
+            </activation>
+            <properties>
+                <maven.test.skip>true</maven.test.skip>
+            </properties>
+        </profile>
+    </profiles>
 </project>
diff --git a/services/sts/systests/sts-itests/pom.xml 
b/services/sts/systests/sts-itests/pom.xml
index 8165f8de20..725f253942 100644
--- a/services/sts/systests/sts-itests/pom.xml
+++ b/services/sts/systests/sts-itests/pom.xml
@@ -212,6 +212,16 @@
                 <maven.test.skip>true</maven.test.skip>
             </properties>
          </profile>
+         <!-- Apache Karaf does not support JDK-19+ yet --> 
+         <profile>
+            <id>skip-tests</id>
+            <activation>
+                <jdk>[19,)</jdk>
+            </activation>
+            <properties>
+                <maven.test.skip>true</maven.test.skip>
+            </properties>
+        </profile>
     </profiles>
 
 </project>
diff --git a/services/xkms/xkms-itests/pom.xml 
b/services/xkms/xkms-itests/pom.xml
index cd8807865c..d3fabd02fb 100644
--- a/services/xkms/xkms-itests/pom.xml
+++ b/services/xkms/xkms-itests/pom.xml
@@ -218,4 +218,17 @@
             </plugins>
         </pluginManagement>
     </build>
+    
+    <!-- Apache Karaf does not support JDK-19+ yet --> 
+    <profiles>
+        <profile>
+            <id>skip-tests</id>
+            <activation>
+                <jdk>[19,)</jdk>
+            </activation>
+            <properties>
+                <maven.test.skip>true</maven.test.skip>
+            </properties>
+        </profile>
+    </profiles>
 </project>

Reply via email to