Index: D:/ide/workspace/maven/maven-surefire-report-plugin/src/main/java/org/apache/maven/plugins/surefire/report/SurefireReportOnlyMojo.java =================================================================== --- D:/ide/workspace/maven/maven-surefire-report-plugin/src/main/java/org/apache/maven/plugins/surefire/report/SurefireReportOnlyMojo.java (revision 0) +++ D:/ide/workspace/maven/maven-surefire-report-plugin/src/main/java/org/apache/maven/plugins/surefire/report/SurefireReportOnlyMojo.java (revision 0) @@ -0,0 +1,32 @@ +package org.apache.maven.plugins.surefire.report; + +/* + * Copyright 2001-2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Creates a nicely formatted Surefire Test Report in html format. + * This goal does not run the tests, it only builds the reports. + * This is a workaround for http://jira.codehaus.org/browse/MSUREFIREREP-6 + * + * @author Barrie Treloar + * @goal report-only + * @execute phase="validate" lifecycle="surefire" + */ +public class SurefireReportOnlyMojo + extends SurefireReportMojo +{ + +} Index: D:/ide/workspace/maven/maven-surefire-report-plugin/src/site/apt/index.apt =================================================================== --- D:/ide/workspace/maven/maven-surefire-report-plugin/src/site/apt/index.apt (revision 485987) +++ D:/ide/workspace/maven/maven-surefire-report-plugin/src/site/apt/index.apt (working copy) @@ -36,6 +36,10 @@ * {{{report-mojo.html}surefire-report:report}} Generates the test results report into html format. + * {{{report-only-mojo.html}surefire-report:report-only}} This goal does + not run the tests, it only builds the reports. Work around for + {{http://jira.codehaus.org/browse/MSUREFIREREP-6}} + [] * Usage