aboutsummaryrefslogtreecommitdiffstats
path: root/documentgen-test
diff options
context:
space:
mode:
authorHarald Musum <musum@yahooinc.com>2023-03-22 13:26:28 +0100
committerHarald Musum <musum@yahooinc.com>2023-03-22 13:26:28 +0100
commitb8ad58738977ee63d046ec3663e42e57abfb8983 (patch)
tree93f3e171baef5d8473ac95b50914cb60bfe6e9c6 /documentgen-test
parente82304752fb663ad7c34c521617f8a4911759c2e (diff)
Avoid using deprecated forkMode config for maven-surefire-plugin
Diffstat (limited to 'documentgen-test')
-rw-r--r--documentgen-test/pom.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/documentgen-test/pom.xml b/documentgen-test/pom.xml
index 1898872c1a0..0477c834477 100644
--- a/documentgen-test/pom.xml
+++ b/documentgen-test/pom.xml
@@ -89,7 +89,8 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<redirectTestOutputToFile>${test.hide}</redirectTestOutputToFile>
- <forkMode>pertest</forkMode>
+ <forkCount>1</forkCount>
+ <reuseForks>false</reuseForks>
</configuration>
</plugin>
<plugin>