This is an automated email from the ASF dual-hosted git repository. alien11689 pushed a commit to branch remove-fork-mode-removed-parameter-from-surefire in repository https://gitbox.apache.org/repos/asf/aries.git
commit 643e70368d33126478f11c3a30d0869a45eb729b Author: Dominik Przybysz <[email protected]> AuthorDate: Sat Jan 25 21:35:50 2025 +0100 [MAINTENANCE] Configure reuse forks in blueprint and subsystem --- blueprint/itests/blueprint-itests/pom.xml | 4 ++++ subsystem/subsystem-itests/pom.xml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/blueprint/itests/blueprint-itests/pom.xml b/blueprint/itests/blueprint-itests/pom.xml index 66c093a12..b3a371e65 100644 --- a/blueprint/itests/blueprint-itests/pom.xml +++ b/blueprint/itests/blueprint-itests/pom.xml @@ -344,6 +344,10 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> + <configuration> + <forkCount>1</forkCount> + <reuseForks>false</reuseForks> + </configuration> </plugin> <plugin> <groupId>org.apache.servicemix.tooling</groupId> diff --git a/subsystem/subsystem-itests/pom.xml b/subsystem/subsystem-itests/pom.xml index 7d9d9d70d..b928149e8 100644 --- a/subsystem/subsystem-itests/pom.xml +++ b/subsystem/subsystem-itests/pom.xml @@ -883,6 +883,10 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> + <configuration> + <forkCount>1</forkCount> + <reuseForks>false</reuseForks> + </configuration> </plugin> </plugins> </build>
