Maven surefire arguments when running JUnit test via eclipse
A newbie question on Maven - Surefire - Eclipse - JUnit I have configured the maven-surefire-plugin in the pom file of my project to pass some additional JVM arguments as below: <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.plugin.version}</version> <configuration> <argLine>-d64 -Xms128m -Xmx4096m -XX:PermSize=512m -Duser.timezone=UTC -XX:-UseSplitVerifier</argLine> </configuration> </plugin> When I run a test case of this project from Eclipse as Run As->JUnit Test, though the classpath is correctly set, the