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/06/22 17:05:55 UTC

[3/4] camel git commit: Fix example testing

Fix example testing


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

Branch: refs/heads/master
Commit: 5a7a671c05065ce450d683e057749d4ca5665a96
Parents: 6062e8d
Author: Claus Ibsen <da...@apache.org>
Authored: Thu Jun 22 18:51:15 2017 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Thu Jun 22 19:05:44 2017 +0200

----------------------------------------------------------------------
 examples/camel-example-cdi-xml/pom.xml | 10 ++++++++++
 1 file changed, 10 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/5a7a671c/examples/camel-example-cdi-xml/pom.xml
----------------------------------------------------------------------
diff --git a/examples/camel-example-cdi-xml/pom.xml b/examples/camel-example-cdi-xml/pom.xml
index 26c25b0..19664a3 100755
--- a/examples/camel-example-cdi-xml/pom.xml
+++ b/examples/camel-example-cdi-xml/pom.xml
@@ -113,6 +113,13 @@
           </dependency>
         </dependencies>
       </plugin>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <!-- need older version of surefire to make test work -->
+        <version>2.19.1</version>
+      </plugin>
     </plugins>
   </build>
 
@@ -125,7 +132,10 @@
       <build>
         <plugins>
           <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-surefire-plugin</artifactId>
+            <!-- need older version of surefire to make test work -->
+            <version>2.19.1</version>
             <configuration>
               <argLine>--add-modules java.xml.bind --add-opens java.base/java.lang=ALL-UNNAMED</argLine>
             </configuration>