You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by lt...@apache.org on 2006/01/30 20:01:14 UTC

svn commit: r373568 - in /maven/maven-1/plugins/trunk/clover/src/plugin-test: ./ testCloverContexts/ testCloverOffCleansProperly/ testCustomCloverLicense/ testDontExecuteInReportAndNoReportGenerated/ testFailBuildOnLowCoverage/ testGenerateHistoryRepor...

Author: ltheussl
Date: Mon Jan 30 11:01:10 2006
New Revision: 373568

URL: http://svn.apache.org/viewcvs?rev=373568&view=rev
Log:
Use defaultGoal in project.xml

Modified:
    maven/maven-1/plugins/trunk/clover/src/plugin-test/maven.xml
    maven/maven-1/plugins/trunk/clover/src/plugin-test/project.xml
    maven/maven-1/plugins/trunk/clover/src/plugin-test/testCloverContexts/maven.xml
    maven/maven-1/plugins/trunk/clover/src/plugin-test/testCloverOffCleansProperly/maven.xml
    maven/maven-1/plugins/trunk/clover/src/plugin-test/testCustomCloverLicense/maven.xml
    maven/maven-1/plugins/trunk/clover/src/plugin-test/testDontExecuteInReportAndNoReportGenerated/maven.xml
    maven/maven-1/plugins/trunk/clover/src/plugin-test/testFailBuildOnLowCoverage/maven.xml
    maven/maven-1/plugins/trunk/clover/src/plugin-test/testGenerateHistoryReport/maven.xml
    maven/maven-1/plugins/trunk/clover/src/plugin-test/testGenerateReportWhenNoTests/maven.xml
    maven/maven-1/plugins/trunk/clover/src/plugin-test/testMultiproject/maven.xml
    maven/maven-1/plugins/trunk/clover/src/plugin-test/testRunCloverOnlyOnce/maven.xml
    maven/maven-1/plugins/trunk/clover/src/plugin-test/testSiteReportAndGenerationOfDifferentFormats/maven.xml

Modified: maven/maven-1/plugins/trunk/clover/src/plugin-test/maven.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/clover/src/plugin-test/maven.xml?rev=373568&r1=373567&r2=373568&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/clover/src/plugin-test/maven.xml (original)
+++ maven/maven-1/plugins/trunk/clover/src/plugin-test/maven.xml Mon Jan 30 11:01:10 2006
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
  -->
-<project default="testPlugin" xmlns:j="jelly:core" xmlns:maven="jelly:maven">
+<project xmlns:j="jelly:core" xmlns:maven="jelly:maven">
 
   <goal name="testPlugin">
     <maven:reactor basedir="${basedir}" includes="test*/project.xml" goals="testPlugin" banner="Test" ignoreFailures="false"/>

Modified: maven/maven-1/plugins/trunk/clover/src/plugin-test/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/clover/src/plugin-test/project.xml?rev=373568&r1=373567&r2=373568&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/clover/src/plugin-test/project.xml (original)
+++ maven/maven-1/plugins/trunk/clover/src/plugin-test/project.xml Mon Jan 30 11:01:10 2006
@@ -37,4 +37,7 @@
   <mailingLists/>
   <developers/>
   <dependencies/>
+  <build>
+    <defaultGoal>testPlugin</defaultGoal>
+  </build>
 </project>

Modified: maven/maven-1/plugins/trunk/clover/src/plugin-test/testCloverContexts/maven.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/clover/src/plugin-test/testCloverContexts/maven.xml?rev=373568&r1=373567&r2=373568&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/clover/src/plugin-test/testCloverContexts/maven.xml (original)
+++ maven/maven-1/plugins/trunk/clover/src/plugin-test/testCloverContexts/maven.xml Mon Jan 30 11:01:10 2006
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
  -->
-<project default="testPlugin"
+<project
   xmlns:util="jelly:util"
   xmlns:j="jelly:core"
   xmlns:ant="jelly:ant"

Modified: maven/maven-1/plugins/trunk/clover/src/plugin-test/testCloverOffCleansProperly/maven.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/clover/src/plugin-test/testCloverOffCleansProperly/maven.xml?rev=373568&r1=373567&r2=373568&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/clover/src/plugin-test/testCloverOffCleansProperly/maven.xml (original)
+++ maven/maven-1/plugins/trunk/clover/src/plugin-test/testCloverOffCleansProperly/maven.xml Mon Jan 30 11:01:10 2006
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
  -->
-<project default="testPlugin"
+<project
   xmlns:util="jelly:util"
   xmlns:j="jelly:core"
   xmlns:ant="jelly:ant"

Modified: maven/maven-1/plugins/trunk/clover/src/plugin-test/testCustomCloverLicense/maven.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/clover/src/plugin-test/testCustomCloverLicense/maven.xml?rev=373568&r1=373567&r2=373568&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/clover/src/plugin-test/testCustomCloverLicense/maven.xml (original)
+++ maven/maven-1/plugins/trunk/clover/src/plugin-test/testCustomCloverLicense/maven.xml Mon Jan 30 11:01:10 2006
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
  -->
-<project default="testPlugin"
+<project
   xmlns:util="jelly:util"
   xmlns:j="jelly:core"
   xmlns:ant="jelly:ant"

Modified: maven/maven-1/plugins/trunk/clover/src/plugin-test/testDontExecuteInReportAndNoReportGenerated/maven.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/clover/src/plugin-test/testDontExecuteInReportAndNoReportGenerated/maven.xml?rev=373568&r1=373567&r2=373568&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/clover/src/plugin-test/testDontExecuteInReportAndNoReportGenerated/maven.xml (original)
+++ maven/maven-1/plugins/trunk/clover/src/plugin-test/testDontExecuteInReportAndNoReportGenerated/maven.xml Mon Jan 30 11:01:10 2006
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
  -->
-<project default="testPlugin"
+<project
   xmlns:util="jelly:util"
   xmlns:j="jelly:core"
   xmlns:ant="jelly:ant"

Modified: maven/maven-1/plugins/trunk/clover/src/plugin-test/testFailBuildOnLowCoverage/maven.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/clover/src/plugin-test/testFailBuildOnLowCoverage/maven.xml?rev=373568&r1=373567&r2=373568&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/clover/src/plugin-test/testFailBuildOnLowCoverage/maven.xml (original)
+++ maven/maven-1/plugins/trunk/clover/src/plugin-test/testFailBuildOnLowCoverage/maven.xml Mon Jan 30 11:01:10 2006
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
  -->
-<project default="testPlugin"
+<project
   xmlns:util="jelly:util"
   xmlns:j="jelly:core"
   xmlns:ant="jelly:ant"

Modified: maven/maven-1/plugins/trunk/clover/src/plugin-test/testGenerateHistoryReport/maven.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/clover/src/plugin-test/testGenerateHistoryReport/maven.xml?rev=373568&r1=373567&r2=373568&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/clover/src/plugin-test/testGenerateHistoryReport/maven.xml (original)
+++ maven/maven-1/plugins/trunk/clover/src/plugin-test/testGenerateHistoryReport/maven.xml Mon Jan 30 11:01:10 2006
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
  -->
-<project default="testPlugin"
+<project
   xmlns:util="jelly:util"
   xmlns:j="jelly:core"
   xmlns:ant="jelly:ant"

Modified: maven/maven-1/plugins/trunk/clover/src/plugin-test/testGenerateReportWhenNoTests/maven.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/clover/src/plugin-test/testGenerateReportWhenNoTests/maven.xml?rev=373568&r1=373567&r2=373568&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/clover/src/plugin-test/testGenerateReportWhenNoTests/maven.xml (original)
+++ maven/maven-1/plugins/trunk/clover/src/plugin-test/testGenerateReportWhenNoTests/maven.xml Mon Jan 30 11:01:10 2006
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
  -->
-<project default="testPlugin"
+<project
   xmlns:util="jelly:util"
   xmlns:j="jelly:core"
   xmlns:ant="jelly:ant"

Modified: maven/maven-1/plugins/trunk/clover/src/plugin-test/testMultiproject/maven.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/clover/src/plugin-test/testMultiproject/maven.xml?rev=373568&r1=373567&r2=373568&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/clover/src/plugin-test/testMultiproject/maven.xml (original)
+++ maven/maven-1/plugins/trunk/clover/src/plugin-test/testMultiproject/maven.xml Mon Jan 30 11:01:10 2006
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
  -->
-<project default="testPlugin"
+<project
     xmlns:assert="assert">
 
   <goal name="testPlugin" prereqs="testDirectCall,testCallByReport"/>

Modified: maven/maven-1/plugins/trunk/clover/src/plugin-test/testRunCloverOnlyOnce/maven.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/clover/src/plugin-test/testRunCloverOnlyOnce/maven.xml?rev=373568&r1=373567&r2=373568&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/clover/src/plugin-test/testRunCloverOnlyOnce/maven.xml (original)
+++ maven/maven-1/plugins/trunk/clover/src/plugin-test/testRunCloverOnlyOnce/maven.xml Mon Jan 30 11:01:10 2006
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
  -->
-<project default="testPlugin"
+<project
   xmlns:util="jelly:util"
   xmlns:j="jelly:core"
   xmlns:ant="jelly:ant"

Modified: maven/maven-1/plugins/trunk/clover/src/plugin-test/testSiteReportAndGenerationOfDifferentFormats/maven.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/clover/src/plugin-test/testSiteReportAndGenerationOfDifferentFormats/maven.xml?rev=373568&r1=373567&r2=373568&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/clover/src/plugin-test/testSiteReportAndGenerationOfDifferentFormats/maven.xml (original)
+++ maven/maven-1/plugins/trunk/clover/src/plugin-test/testSiteReportAndGenerationOfDifferentFormats/maven.xml Mon Jan 30 11:01:10 2006
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
  -->
-<project default="testPlugin"
+<project
   xmlns:util="jelly:util"
   xmlns:j="jelly:core"
   xmlns:ant="jelly:ant"