Author: kcardineaud Date: 2011-08-18 14:40:00 +0200 (Thu, 18 Aug 2011) New Revision: 611 Url: http://nuiton.org/repositories/revision/jrst/611 Log: #1682 Tests are failing - The tests failed because the target/surefire-workdir directory was still not created Modified: trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2011-08-18 12:24:08 UTC (rev 610) +++ trunk/pom.xml 2011-08-18 12:40:00 UTC (rev 611) @@ -382,6 +382,10 @@ <nuitonI18nVersion>2.4.1</nuitonI18nVersion> <xalanVersion>2.7.1</xalanVersion> + <scmwebeditorUrl>http://localhost:8080/scmwebeditor/checkout.action</scmwebeditorUrl> + <nuitonSkinVersion>1.0.6-SNAPSHOT</nuitonSkinVersion> + + </properties> <build> @@ -398,6 +402,32 @@ </plugins> </pluginManagement> + + <plugins> + <!-- TODO Remove this when using mavenpom > 3.0.1 --> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <executions> + <execution> + <id>generate-surefire-workdir</id> + <phase>generate-test-sources</phase> + <configuration> + <target> + <mkdir dir="target/surefire-workdir"/> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + + + + + </build> <!-- ************************************************************* -->