From: <ble...@us...> - 2010-09-21 15:00:46
|
Revision: 3604 http://bigdata.svn.sourceforge.net/bigdata/?rev=3604&view=rev Author: blevine218 Date: 2010-09-21 15:00:39 +0000 (Tue, 21 Sep 2010) Log Message: ----------- added surefire reporting Modified Paths: -------------- branches/maven_scaleout/bigdata-integ/pom.xml Modified: branches/maven_scaleout/bigdata-integ/pom.xml =================================================================== --- branches/maven_scaleout/bigdata-integ/pom.xml 2010-09-21 14:28:02 UTC (rev 3603) +++ branches/maven_scaleout/bigdata-integ/pom.xml 2010-09-21 15:00:39 UTC (rev 3604) @@ -220,4 +220,29 @@ </dependency> </dependencies> + <reporting> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-report-plugin</artifactId> + <version>2.6</version> + <reportSets> + <reportSet> + <id>integration-tests</id> + <reports> + <report>report-only</report> + </reports> + <configuration> + <outputName>failsafe-report</outputName> + <reportsDirectories> + <reportsDirectory>${project.build.directory}/failsafe-reports</reportsDirectory> + </reportsDirectories> + </configuration> + </reportSet> + </reportSets> + </plugin> + </plugins> + </reporting> + + </project> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |