This is an automated email from the ASF dual-hosted git repository.
lhotari pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git
The following commit(s) were added to refs/heads/master by this push:
new 4ea0d110375 [fix][build] Fix "An error has occurred in JaCoCo report
generation" (#19229)
4ea0d110375 is described below
commit 4ea0d110375fd3a467a2238f7f797e5f97075383
Author: Lari Hotari <[email protected]>
AuthorDate: Fri Jan 13 21:25:43 2023 +0200
[fix][build] Fix "An error has occurred in JaCoCo report generation"
(#19229)
---
pom.xml | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index 089419fcc97..5fd2931a8e8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -110,6 +110,7 @@ flexible messaging model and an intuitive client
API.</description>
<testRetryCount>1</testRetryCount>
<testJacocoAgentArgument/>
<testHeapDumpPath>/tmp</testHeapDumpPath>
+ <surefire.shutdown>kill</surefire.shutdown>
<docker.organization>apachepulsar</docker.organization>
<skipSourceReleaseAssembly>false</skipSourceReleaseAssembly>
<skipBuildDistribution>false</skipBuildDistribution>
@@ -1485,7 +1486,7 @@ flexible messaging model and an intuitive client
API.</description>
</argLine>
<reuseForks>${testReuseFork}</reuseForks>
<forkCount>${testForkCount}</forkCount>
- <shutdown>kill</shutdown>
+ <shutdown>${surefire.shutdown}</shutdown>
<redirectTestOutputToFile>${redirectTestOutputToFile}</redirectTestOutputToFile>
<trimStackTrace>false</trimStackTrace>
<systemPropertyVariables>
@@ -1938,6 +1939,7 @@ flexible messaging model and an intuitive client
API.</description>
<id>coverage</id>
<properties>
<testJacocoAgentArgument>@{jacoco.agent.argument}</testJacocoAgentArgument>
+ <surefire.shutdown>exit</surefire.shutdown>
</properties>
<build>
<plugins>