From 978d767eb528f7a9231e4c622c41ed7b09ecb216 Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com> Date: Wed, 31 Jul 2019 14:03:10 +0200 Subject: [PATCH] build(plugins): fixed faulty build on windows, not enough memort. ISSUES CLOSED: #7 --- pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pom.xml b/pom.xml index 4dc08a0c..70c3afdd 100644 --- a/pom.xml +++ b/pom.xml @@ -155,6 +155,11 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <forkCount>3</forkCount> + <reuseForks>true</reuseForks> + <argLine>-Xmx1024m -XX:MaxPermSize=256m</argLine> + </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> -- GitLab