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 2014/08/22 15:18:46 UTC

git commit: CAMEL-7738: Fixed vertx tests which must fork per test.

Repository: camel
Updated Branches:
  refs/heads/master 7ad36e3d2 -> 7a2e5197f


CAMEL-7738: Fixed vertx tests which must fork per test.


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

Branch: refs/heads/master
Commit: 7a2e5197f54a096b82e897f67faac75d3ed381fb
Parents: 7ad36e3
Author: Claus Ibsen <da...@apache.org>
Authored: Fri Aug 22 15:18:36 2014 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Fri Aug 22 15:18:36 2014 +0200

----------------------------------------------------------------------
 components/camel-vertx/pom.xml | 12 ++++++++++++
 1 file changed, 12 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/7a2e5197/components/camel-vertx/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-vertx/pom.xml b/components/camel-vertx/pom.xml
index ea6ed54..9b5f1c4 100644
--- a/components/camel-vertx/pom.xml
+++ b/components/camel-vertx/pom.xml
@@ -65,4 +65,16 @@
     </dependency>
   </dependencies>
 
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <forkMode>perTest</forkMode>
+          <enableAssertions>false</enableAssertions>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
 </project>