You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@curator.apache.org by io...@apache.org on 2013/10/04 21:35:47 UTC

[2/2] git commit: [CURATOR-61] Set forkCount=1 and reuseForks=false (aka forkMode=always) in the surefire plugin configuration.

[CURATOR-61] Set forkCount=1 and reuseForks=false  (aka forkMode=always) in the surefire plugin configuration.


Project: http://git-wip-us.apache.org/repos/asf/incubator-curator/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-curator/commit/6a02a770
Tree: http://git-wip-us.apache.org/repos/asf/incubator-curator/tree/6a02a770
Diff: http://git-wip-us.apache.org/repos/asf/incubator-curator/diff/6a02a770

Branch: refs/heads/master
Commit: 6a02a7702a03af4afd9fce641365e956982c512b
Parents: 02255b0
Author: Ioannis Canellos <io...@apache.org>
Authored: Fri Oct 4 22:22:53 2013 +0300
Committer: Ioannis Canellos <io...@apache.org>
Committed: Fri Oct 4 22:22:53 2013 +0300

----------------------------------------------------------------------
 curator-framework/pom.xml | 2 ++
 pom.xml                   | 2 ++
 2 files changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-curator/blob/6a02a770/curator-framework/pom.xml
----------------------------------------------------------------------
diff --git a/curator-framework/pom.xml b/curator-framework/pom.xml
index 5f48565..af73245 100644
--- a/curator-framework/pom.xml
+++ b/curator-framework/pom.xml
@@ -67,6 +67,8 @@
                 <configuration>
                     <excludes>
                         <!-- this test sets a system property - it doesn't seem to work with Maven -->
+                        <forkCount>1</forkCount>
+                        <reuseForks>false</reuseForks>
                         <excludes>**/TestReadOnly.java</excludes>
                     </excludes>
                 </configuration>

http://git-wip-us.apache.org/repos/asf/incubator-curator/blob/6a02a770/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index d33c43d..b232e14 100644
--- a/pom.xml
+++ b/pom.xml
@@ -414,6 +414,8 @@
                 <artifactId>maven-surefire-plugin</artifactId>
                 <version>2.16</version>
                 <configuration>
+                    <forkCount>1</forkCount>
+                    <reuseForks>false</reuseForks>
                     <redirectTestOutputToFile>true</redirectTestOutputToFile>
                 </configuration>
             </plugin>