You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2017/04/14 10:58:02 UTC

[17/20] camel git commit: CAMEL-10968: skip CXF tests on Java 9 until CXF-7270 is resolved

CAMEL-10968: skip CXF tests on Java 9 until CXF-7270 is resolved


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/7b2d32e1
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/7b2d32e1
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/7b2d32e1

Branch: refs/heads/master
Commit: 7b2d32e1292f7d5f2515b018527aba8d6e95846b
Parents: f0cc62e
Author: jpoth <po...@gmail.com>
Authored: Fri Apr 14 11:04:57 2017 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Fri Apr 14 12:57:21 2017 +0200

----------------------------------------------------------------------
 components/camel-cxf/pom.xml | 21 ++++++++++++++++++++-
 1 file changed, 20 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/7b2d32e1/components/camel-cxf/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-cxf/pom.xml b/components/camel-cxf/pom.xml
index 70f782e..2503adf 100644
--- a/components/camel-cxf/pom.xml
+++ b/components/camel-cxf/pom.xml
@@ -492,6 +492,25 @@
         </dependency>
       </dependencies>
     </profile>
+    <profile>
+      <id>java9</id>
+      <activation>
+        <jdk>9</jdk>
+      </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <configuration>
+              <excludes>
+                <!--ignore tests until CXF-7270 is resolved and released-->
+                <exclude>**/**</exclude>
+              </excludes>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
   </profiles>
-
 </project>