You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ni...@apache.org on 2014/08/25 03:39:49 UTC

git commit: Try to fix the camel-netty4 unit test error by starting the jvm per test

Repository: camel
Updated Branches:
  refs/heads/master dc6903479 -> 593f5b15b


Try to fix the camel-netty4 unit test error by starting the jvm per test


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

Branch: refs/heads/master
Commit: 593f5b15b6960330c97b7bc31ec0877012d615ad
Parents: dc69034
Author: Willem Jiang <wi...@gmail.com>
Authored: Mon Aug 25 09:39:34 2014 +0800
Committer: Willem Jiang <wi...@gmail.com>
Committed: Mon Aug 25 09:39:34 2014 +0800

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


http://git-wip-us.apache.org/repos/asf/camel/blob/593f5b15/components/camel-netty4/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-netty4/pom.xml b/components/camel-netty4/pom.xml
index bb8fe64..0bac261 100644
--- a/components/camel-netty4/pom.xml
+++ b/components/camel-netty4/pom.xml
@@ -90,5 +90,17 @@
       <scope>test</scope>
     </dependency>
   </dependencies>
+  
+   <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <forkMode>perTest</forkMode>
+          <enableAssertions>false</enableAssertions>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 
 </project>