You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@any23.apache.org by le...@apache.org on 2017/01/19 05:20:41 UTC

any23 git commit: Migrating the Deprecated forkMode Parameter to forkCount and reuseForks

Repository: any23
Updated Branches:
  refs/heads/master be133d068 -> e6e136fc1


Migrating the Deprecated forkMode Parameter to forkCount and reuseForks


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

Branch: refs/heads/master
Commit: e6e136fc1a203f259a5b2bd5ebf1586d90a8ee9f
Parents: be133d0
Author: Lewis John McGibbney <le...@gmail.com>
Authored: Wed Jan 18 21:20:36 2017 -0800
Committer: Lewis John McGibbney <le...@gmail.com>
Committed: Wed Jan 18 21:20:36 2017 -0800

----------------------------------------------------------------------
 plugins/basic-crawler/pom.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/any23/blob/e6e136fc/plugins/basic-crawler/pom.xml
----------------------------------------------------------------------
diff --git a/plugins/basic-crawler/pom.xml b/plugins/basic-crawler/pom.xml
index 88c8670..bb6de1b 100644
--- a/plugins/basic-crawler/pom.xml
+++ b/plugins/basic-crawler/pom.xml
@@ -131,7 +131,8 @@
         <artifactId>maven-surefire-plugin</artifactId>
         <configuration>
           <!-- Solve concurrency issues in Crawler4j internal status. -->
-          <forkMode>always</forkMode>
+          <forkCount>1</forkCount>
+          <reuseForks>false</reuseForks>
         </configuration>
       </plugin>