JAMES-2489 Run mailet integration tests in parallel
Project: http://git-wip-us.apache.org/repos/asf/james-project/repo Commit: http://git-wip-us.apache.org/repos/asf/james-project/commit/41068489 Tree: http://git-wip-us.apache.org/repos/asf/james-project/tree/41068489 Diff: http://git-wip-us.apache.org/repos/asf/james-project/diff/41068489 Branch: refs/heads/master Commit: 41068489922be6b11b5c78b5e193a7834f0ecf5f Parents: 096c6c7 Author: Benoit Tellier <[email protected]> Authored: Thu Nov 1 09:41:50 2018 +0700 Committer: Benoit Tellier <[email protected]> Committed: Thu Nov 1 10:15:54 2018 +0700 ---------------------------------------------------------------------- server/mailet/integration-testing/pom.xml | 13 +++++++++++++ 1 file changed, 13 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/james-project/blob/41068489/server/mailet/integration-testing/pom.xml ---------------------------------------------------------------------- diff --git a/server/mailet/integration-testing/pom.xml b/server/mailet/integration-testing/pom.xml index a1ddfe5..f2e194b 100644 --- a/server/mailet/integration-testing/pom.xml +++ b/server/mailet/integration-testing/pom.xml @@ -177,4 +177,17 @@ </dependency> </dependencies> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <reuseForks>false</reuseForks> + <forkCount>1C</forkCount> + </configuration> + </plugin> + </plugins> + </build> + </project> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
