You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by pd...@apache.org on 2020/08/27 13:37:35 UTC

[zeppelin] 04/07: forkMode is deprecated, migrate to new properties

This is an automated email from the ASF dual-hosted git repository.

pdallig pushed a commit to branch test_refactoring
in repository https://gitbox.apache.org/repos/asf/zeppelin.git

commit 428a50aa524cb1b0f4cb0bd4fbf623def81041b7
Author: Philipp Dallig <ph...@gmail.com>
AuthorDate: Thu Aug 27 14:18:00 2020 +0200

    forkMode is deprecated, migrate to new properties
    
    https://maven.apache.org/surefire/maven-surefire-plugin/examples/fork-options-and-parallel-execution.html
---
 zeppelin-zengine/pom.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/zeppelin-zengine/pom.xml b/zeppelin-zengine/pom.xml
index 9977d68..7cd4368 100644
--- a/zeppelin-zengine/pom.xml
+++ b/zeppelin-zengine/pom.xml
@@ -303,7 +303,8 @@
       <plugin>
         <artifactId>maven-surefire-plugin</artifactId>
         <configuration>
-          <forkMode>always</forkMode>
+          <reuseForks>false</reuseForks>
+          <forkCount>1</forkCount>
           <systemProperties>
             <java.io.tmpdir>${project.build.directory}</java.io.tmpdir>
           </systemProperties>