This is an automated email from the ASF dual-hosted git repository. btellier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit c89a8b2fc502879e1faf9c270a78541bd49c26a2 Author: Benoit Tellier <[email protected]> AuthorDate: Tue Sep 10 14:48:59 2019 +0700 JAMES-2721 Increase parallelism for mailbox/cassandra projects Last build (ci-02) for Mailbox :: Cassandra: [06:04 min] Running 2 Cassandra in parallel is doable and allow to gain 1 minute 30 --- mailbox/cassandra/pom.xml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/mailbox/cassandra/pom.xml b/mailbox/cassandra/pom.xml index fff5244..d3cb872 100644 --- a/mailbox/cassandra/pom.xml +++ b/mailbox/cassandra/pom.xml @@ -160,4 +160,17 @@ <scope>test</scope> </dependency> </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <reuseForks>true</reuseForks> + <forkCount>2</forkCount> + </configuration> + </plugin> + </plugins> + </build> </project> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
