From: <fg...@us...> - 2010-08-03 10:30:01
|
Revision: 2837 http://openutils.svn.sourceforge.net/openutils/?rev=2837&view=rev Author: fgiust Date: 2010-08-03 10:29:55 +0000 (Tue, 03 Aug 2010) Log Message: ----------- forkMode=always seems to fix unit tests run from maven (without this the repository is not shut down properly after each test) Modified Paths: -------------- trunk/openutils-mgnlcriteria/pom.xml Modified: trunk/openutils-mgnlcriteria/pom.xml =================================================================== --- trunk/openutils-mgnlcriteria/pom.xml 2010-08-03 09:48:36 UTC (rev 2836) +++ trunk/openutils-mgnlcriteria/pom.xml 2010-08-03 10:29:55 UTC (rev 2837) @@ -73,8 +73,10 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> + <version>2.5</version> <configuration> <useManifestOnlyJar>false</useManifestOnlyJar> + <forkMode>always</forkMode><!-- ensures that the repository is shut down properly --> </configuration> </plugin> </plugins> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |