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 2007/05/13 00:20:51 UTC

svn commit: r537521 - in /maven/maven-1/plugins/trunk/dashboard/src/plugin-test: common/project.xml maven.xml testIndividualReportsNotGeneratedByDashboard/project.xml

Author: ltheussl
Date: Sat May 12 15:20:50 2007
New Revision: 537521

URL: http://svn.apache.org/viewvc?view=rev&rev=537521
Log:
Re-enable javancss and jcoverage in plugin test: javancss 1.3.1 has a fixed pom, and jcoverage is in the sandbox, so add a dependency.

Modified:
    maven/maven-1/plugins/trunk/dashboard/src/plugin-test/common/project.xml
    maven/maven-1/plugins/trunk/dashboard/src/plugin-test/maven.xml
    maven/maven-1/plugins/trunk/dashboard/src/plugin-test/testIndividualReportsNotGeneratedByDashboard/project.xml

Modified: maven/maven-1/plugins/trunk/dashboard/src/plugin-test/common/project.xml
URL: http://svn.apache.org/viewvc/maven/maven-1/plugins/trunk/dashboard/src/plugin-test/common/project.xml?view=diff&rev=537521&r1=537520&r2=537521
==============================================================================
--- maven/maven-1/plugins/trunk/dashboard/src/plugin-test/common/project.xml (original)
+++ maven/maven-1/plugins/trunk/dashboard/src/plugin-test/common/project.xml Sat May 12 15:20:50 2007
@@ -49,16 +49,19 @@
       <type>plugin</type>
     </dependency>
     <!-- We need to be sure the JavaNCSS plugin is downloaded for the tests -->
-    <!-- Temporarly disabled - This plugin contains an invalid POM -->
-    <!-- Maven 1.1 RC1 is more strict than before -->
-    <!--
     <dependency>
       <groupId>maven-plugins</groupId>
       <artifactId>maven-javancss-plugin</artifactId>
-      <version>1.3</version>
+      <version>1.3.1</version>
+      <type>plugin</type>
+    </dependency>
+    <!-- We need to be sure the jcoverage plugin is downloaded for the tests -->
+    <dependency>
+      <groupId>maven</groupId>
+      <artifactId>maven-jcoverage-plugin</artifactId>
+      <version>1.0.9</version>
       <type>plugin</type>
     </dependency>
-    -->
   </dependencies>
   <build>
     <defaultGoal>testPlugin</defaultGoal>

Modified: maven/maven-1/plugins/trunk/dashboard/src/plugin-test/maven.xml
URL: http://svn.apache.org/viewvc/maven/maven-1/plugins/trunk/dashboard/src/plugin-test/maven.xml?view=diff&rev=537521&r1=537520&r2=537521
==============================================================================
--- maven/maven-1/plugins/trunk/dashboard/src/plugin-test/maven.xml (original)
+++ maven/maven-1/plugins/trunk/dashboard/src/plugin-test/maven.xml Sat May 12 15:20:50 2007
@@ -182,19 +182,14 @@
     <ant:echo>  Check fbviolations report</ant:echo>
     <x:set var="URL" select="string($doc/document/body/section/table/tr[3]/td[17]/a/@href)"/>
     <assert:assertEquals expected="multiproject/testIndividualReportsNotGeneratedByDashboard/findbugs-report.html" value="${URL}"/>
-    <!-- jcoverage has been demoted -->
     <!-- jcoveragelipc -->
-    <!--
     <ant:echo>  Check jcoveragelipc report</ant:echo>
     <x:set var="URL" select="string($doc/document/body/section/table/tr[3]/td[18]/table/tr[1]/td[1]/a/@href)"/>
     <assert:assertEquals expected="multiproject/testIndividualReportsNotGeneratedByDashboard/jcoverage/index.html" value="${URL}"/>
-    -->
     <!-- jcoverageloc -->
-    <!--
     <ant:echo>  Check jcoverageloc report</ant:echo>
     <x:set var="URL" select="string($doc/document/body/section/table/tr[3]/td[19]/a/@href)"/>
     <assert:assertEquals expected="multiproject/testIndividualReportsNotGeneratedByDashboard/jcoverage/index.html" value="${URL}"/>
-    -->
     <!-- tasklistclass -->
     <ant:echo>  Check tasklistclass report</ant:echo>
     <x:set var="URL" select="string($doc/document/body/section/table/tr[3]/td[20]/a/@href)"/>

Modified: maven/maven-1/plugins/trunk/dashboard/src/plugin-test/testIndividualReportsNotGeneratedByDashboard/project.xml
URL: http://svn.apache.org/viewvc/maven/maven-1/plugins/trunk/dashboard/src/plugin-test/testIndividualReportsNotGeneratedByDashboard/project.xml?view=diff&rev=537521&r1=537520&r2=537521
==============================================================================
--- maven/maven-1/plugins/trunk/dashboard/src/plugin-test/testIndividualReportsNotGeneratedByDashboard/project.xml (original)
+++ maven/maven-1/plugins/trunk/dashboard/src/plugin-test/testIndividualReportsNotGeneratedByDashboard/project.xml Sat May 12 15:20:50 2007
@@ -41,12 +41,9 @@
     <report>maven-findbugs-plugin</report>
     <report>maven-junit-report-plugin</report>
     <report>maven-simian-plugin</report>
+    <report>maven-jcoverage-plugin</report>
     <report>maven-tasklist-plugin</report>
-    <!-- Temporarly disabled - This plugin contains an invalid POM -->
-    <!-- Maven 1.1 RC1 is more strict than before -->
-    <!--
     <report>maven-javancss-plugin</report>
-    -->
     <report>maven-jira-plugin</report>
   </reports>
 </project>