You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by vm...@apache.org on 2005/01/24 15:05:53 UTC

svn commit: r126284 - in maven/maven-1/plugins/trunk/dashboard: src/plugin-resources/templates src/plugin-test src/plugin-test/common src/plugin-test/subproject1 src/plugin-test/subproject1/conf/test src/plugin-test/subproject2 src/plugin-test/subproject3 xdocs

Author: vmassol
Date: Mon Jan 24 06:05:52 2005
New Revision: 126284

URL: http://svn.apache.org/viewcvs?view=rev&rev=126284
Log:
Separated common build data from master project
Added:
   maven/maven-1/plugins/trunk/dashboard/src/plugin-test/common/
   maven/maven-1/plugins/trunk/dashboard/src/plugin-test/common/project.properties
   maven/maven-1/plugins/trunk/dashboard/src/plugin-test/common/project.xml
Modified:
   maven/maven-1/plugins/trunk/dashboard/src/plugin-resources/templates/dashboard.jsl
   maven/maven-1/plugins/trunk/dashboard/src/plugin-test/maven.xml
   maven/maven-1/plugins/trunk/dashboard/src/plugin-test/project.properties
   maven/maven-1/plugins/trunk/dashboard/src/plugin-test/project.xml
   maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/conf/test/changelog-report.xml
   maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/conf/test/changelog.xml
   maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/conf/test/file-activity-report.xml
   maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/maven.xml
   maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/project.xml
   maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject2/project.xml
   maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject3/project.xml
   maven/maven-1/plugins/trunk/dashboard/xdocs/properties.xml

Modified: maven/maven-1/plugins/trunk/dashboard/src/plugin-resources/templates/dashboard.jsl
Url: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/dashboard/src/plugin-resources/templates/dashboard.jsl?view=diff&rev=126284&p1=maven/maven-1/plugins/trunk/dashboard/src/plugin-resources/templates/dashboard.jsl&r1=126283&p2=maven/maven-1/plugins/trunk/dashboard/src/plugin-resources/templates/dashboard.jsl&r2=126284
==============================================================================
--- maven/maven-1/plugins/trunk/dashboard/src/plugin-resources/templates/dashboard.jsl	(original)
+++ maven/maven-1/plugins/trunk/dashboard/src/plugin-resources/templates/dashboard.jsl	Mon Jan 24 06:05:52 2005
@@ -3,7 +3,7 @@
 <!--
  * ========================================================================
  * 
- * Copyright 2004 The Apache Software Foundation.
+ * Copyright 2004-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.

Added: maven/maven-1/plugins/trunk/dashboard/src/plugin-test/common/project.properties
Url: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/dashboard/src/plugin-test/common/project.properties?view=auto&rev=126284
==============================================================================
--- (empty file)
+++ maven/maven-1/plugins/trunk/dashboard/src/plugin-test/common/project.properties	Mon Jan 24 06:05:52 2005
@@ -0,0 +1,42 @@
+# -------------------------------------------------------------------
+# 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.
+# -------------------------------------------------------------------
+
+# -------------------------------------------------------------------
+# P R O J E C T  P R O P E R T I E S
+# -------------------------------------------------------------------
+maven.xdoc.date=left
+maven.checkstyle.header.file = ${basedir}/../../../../checkstyle-license.txt
+
+# Ensure that Maven will be able to download the findbugs plugin for the
+# tests
+maven.repo.remote = http://www.ibiblio.org/maven,http://maven-plugins.sourceforge.net/repository/
+
+# Put line count at a low number so that we can get Simian-reported errors
+maven.simian.linecount = 5
+
+# Turn off these properties as we're using the multiproject plugin to 
+# generate the dashboard
+maven.dashboard.rungoals = false
+maven.dashboard.runreactor = false
+
+# Define what dashboard aggregators will be run. This property is inherited
+# by the subprojects and thus they don't need to define it again.
+maven.dashboard.aggregators = csall,cserrors,cswarnings,csfiles,clovertpc,cloverloc,cloverncloc,junittests,junitpassrate,junitfailures,juniterrors,simiantdl,pmdfiles,pmdviolations,fbfiles,fbviolations,jcoveragelipc,jcoverageloc,tasklistclass,tasklistmethod,tasklist,scmchangedfiles,scmchangedcommit,javancssclassestotal,javancssfunctionstotal,javancssncsstotal,javancsspackagestotal,javancssjavadocstotal
+
+# Make sure that an XML report is generated whenever Clover is run. Also
+# inherited by the subprojects.
+maven.clover.report.xml = true
+maven.junit.fork=true

Added: maven/maven-1/plugins/trunk/dashboard/src/plugin-test/common/project.xml
Url: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/dashboard/src/plugin-test/common/project.xml?view=auto&rev=126284
==============================================================================
--- (empty file)
+++ maven/maven-1/plugins/trunk/dashboard/src/plugin-test/common/project.xml	Mon Jan 24 06:05:52 2005
@@ -0,0 +1,70 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!-- 
+/*
+ * 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.
+ */
+ -->
+
+<project>
+  <pomVersion>3</pomVersion>
+  <groupId>maven</groupId>
+  <currentVersion>1.0</currentVersion>
+  <organization>
+    <name>Apache Software Foundation</name>
+    <url>http://jakarta.apache.org/</url>
+  </organization>
+  <inceptionYear>2003</inceptionYear>
+  <package>org.apache.maven.dashboard.test</package>
+  <url>http://maven.apache.org/reference/plugins/dashboard/</url>
+  <repository>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk/dashboard/</connection>
+    <url>http://svn.apache.org/viewcvs.cgi/maven/maven-1/plugins/trunk/dashboard/</url>
+  </repository>
+  <mailingLists/>
+  <developers/>
+  <dependencies>
+    <dependency>
+      <groupId>commons-jelly</groupId>
+      <artifactId>commons-jelly-tags-xml</artifactId>
+      <version>20030211.142705</version>
+      <url>http://jakarta.apache.org/commons/jelly/libs/xml/</url>
+    </dependency>
+    <!-- We need to be sure the findbugs plugin is downloaded for the tests -->
+    <dependency>
+      <groupId>maven-plugins</groupId>
+      <artifactId>maven-findbugs-plugin</artifactId>
+      <version>0.8.4</version>
+      <type>plugin</type>
+    </dependency>
+    <!-- We need to be sure the JavaNCSS plugin is downloaded for the tests -->
+    <dependency>
+      <groupId>maven-plugins</groupId>
+      <artifactId>maven-javancss-plugin</artifactId>
+      <version>1.3</version>
+      <type>plugin</type>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+    <unitTestSourceDirectory>src/test</unitTestSourceDirectory>
+    <unitTest>
+      <includes>
+        <include>**/Test*.java</include>
+      </includes>
+    </unitTest>
+  </build>
+  <reports/>
+</project>

Modified: maven/maven-1/plugins/trunk/dashboard/src/plugin-test/maven.xml
Url: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/dashboard/src/plugin-test/maven.xml?view=diff&rev=126284&p1=maven/maven-1/plugins/trunk/dashboard/src/plugin-test/maven.xml&r1=126283&p2=maven/maven-1/plugins/trunk/dashboard/src/plugin-test/maven.xml&r2=126284
==============================================================================
--- maven/maven-1/plugins/trunk/dashboard/src/plugin-test/maven.xml	(original)
+++ maven/maven-1/plugins/trunk/dashboard/src/plugin-test/maven.xml	Mon Jan 24 06:05:52 2005
@@ -1,6 +1,6 @@
 <!-- 
 /*
- * Copyright 2001-2004 The Apache Software Foundation.
+ * 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.
@@ -32,6 +32,7 @@
     <!-- Setup -->
     <j:set var="goal" value="clean"/>
     <attainGoal name="multiproject:goal"/>
+    <attainGoal name="clean"/>
 
     <!-- Call goal to test -->
     <j:set var="maven.multiproject.site.goals" value="site,dashboard:report-single"/>
@@ -109,8 +110,9 @@
     <ant:echo>Check that subproject1 has a link to the checkstyle report</ant:echo>
     <x:set var="URL" select="string($doc/document/body/section/table/tr[2]/td[2]/a/@href)"/>
     <assert:assertEquals expected="multiproject/test-maven-dashboard-plugin-subproject1/checkstyle-report.html" value="${URL}"/>
-    <!-- The subproject2 don't have any report we check that there isn't any link -->
-    <ant:echo>Check that subproject2 has no link to detailed reports</ant:echo>
+    <!-- Subproject2 has no HTML report generated (there are no reports defined in subproject2's
+         project.xml): we check that the link to the report does not exist -->
+    <ant:echo>Check that subproject2 has no link to the checkstyle report</ant:echo>
     <x:set var="URL" select="string($doc/document/body/section/table/tr[3]/td[2]/a/@href)"/>
     <assert:assertEquals expected="" value="${URL}"/>
 

Modified: maven/maven-1/plugins/trunk/dashboard/src/plugin-test/project.properties
Url: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/dashboard/src/plugin-test/project.properties?view=diff&rev=126284&p1=maven/maven-1/plugins/trunk/dashboard/src/plugin-test/project.properties&r1=126283&p2=maven/maven-1/plugins/trunk/dashboard/src/plugin-test/project.properties&r2=126284
==============================================================================
--- maven/maven-1/plugins/trunk/dashboard/src/plugin-test/project.properties	(original)
+++ maven/maven-1/plugins/trunk/dashboard/src/plugin-test/project.properties	Mon Jan 24 06:05:52 2005
@@ -1,5 +1,5 @@
 # -------------------------------------------------------------------
-# Copyright 2001-2004 The Apache Software Foundation.
+# 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.
@@ -14,35 +14,11 @@
 # limitations under the License.
 # -------------------------------------------------------------------
 
-# -------------------------------------------------------------------
-# P R O J E C T  P R O P E R T I E S
-# -------------------------------------------------------------------
-maven.xdoc.date=left
-maven.checkstyle.header.file = ${basedir}/../../../../checkstyle-license.txt
-
-# Ensure that Maven will be able to download the findbugs plugin for the
-# tests
-maven.repo.remote = http://www.ibiblio.org/maven,http://maven-plugins.sourceforge.net/repository/
-
-# Put line count at a low number so that we can get Simian-reported errors
-maven.simian.linecount = 5
-
 # MUST specify these, even though they are the defaults, so we can run 
 # inside reactor where they were already set.
 maven.multiproject.basedir=${basedir}
 maven.multiproject.includes=*/project.xml
-maven.multiproject.excludes=
-
-# Turn off these properties as we're using the multiproject plugin to 
-# generate the dashboard
-maven.dashboard.rungoals = false
-maven.dashboard.runreactor = false
-
-# Define what dashboard aggregators will be run. This property is inherited
-# by the subprojects and thus they don't need to define it again.
-maven.dashboard.aggregators = csall,cserrors,cswarnings,csfiles,clovertpc,cloverloc,cloverncloc,junittests,junitpassrate,junitfailures,juniterrors,simiantdl,pmdfiles,pmdviolations,fbfiles,fbviolations,jcoveragelipc,jcoverageloc,tasklistclass,tasklistmethod,tasklist,scmchangedfiles,scmchangedcommit,javancssclassestotal,javancssfunctionstotal,javancssncsstotal,javancsspackagestotal,javancssjavadocstotal
+maven.multiproject.excludes=common/project.xml
 
-# Make sure that an XML report is generated whenever Clover is run. Also
-# inherited by the subprojects.
-maven.clover.report.xml = true
-maven.junit.fork=true
+# Ensure we don't build common/project.xml in the dashboard report
+maven.dashboard.excludes=**/target/**/project.xml,common/project.xml

Modified: maven/maven-1/plugins/trunk/dashboard/src/plugin-test/project.xml
Url: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/dashboard/src/plugin-test/project.xml?view=diff&rev=126284&p1=maven/maven-1/plugins/trunk/dashboard/src/plugin-test/project.xml&r1=126283&p2=maven/maven-1/plugins/trunk/dashboard/src/plugin-test/project.xml&r2=126284
==============================================================================
--- maven/maven-1/plugins/trunk/dashboard/src/plugin-test/project.xml	(original)
+++ maven/maven-1/plugins/trunk/dashboard/src/plugin-test/project.xml	Mon Jan 24 06:05:52 2005
@@ -1,7 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
+
 <!-- 
 /*
- * Copyright 2001-2004 The Apache Software Foundation.
+ * 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.
@@ -17,58 +18,11 @@
  */
  -->
 
-
 <project>
-  <pomVersion>3</pomVersion>
+  <extend>${basedir}/common/project.xml</extend>
   <id>test-maven-dashboard-plugin</id>
   <name>Maven Dashboard plugin test</name>
-  <groupId>maven</groupId>
-  <currentVersion>1.0</currentVersion>
-  <organization>
-    <name>Apache Software Foundation</name>
-    <url>http://jakarta.apache.org/</url>
-  </organization>
-  <inceptionYear>2003</inceptionYear>
-  <package>org.apache.maven.dashboard.test</package>
   <shortDescription>Test project for Maven Dashboard plugin</shortDescription>
-  <url>http://maven.apache.org/reference/plugins/dashboard/</url>
-  <repository>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk/dashboard/</connection>
-    <url>http://svn.apache.org/viewcvs.cgi/maven/maven-1/plugins/trunk/dashboard/</url>
-  </repository>
-  <mailingLists/>
-  <developers/>
-  <dependencies>
-    <dependency>
-      <groupId>commons-jelly</groupId>
-      <artifactId>commons-jelly-tags-xml</artifactId>
-      <version>20030211.142705</version>
-      <url>http://jakarta.apache.org/commons/jelly/libs/xml/</url>
-    </dependency>
-    <!-- We need to be sure the findbugs plugin is downloaded for the tests -->
-    <dependency>
-      <groupId>maven-plugins</groupId>
-      <artifactId>maven-findbugs-plugin</artifactId>
-      <version>0.8.4</version>
-      <type>plugin</type>
-    </dependency>
-    <!-- We need to be sure the JavaNCSS plugin is downloaded for the tests -->
-    <dependency>
-      <groupId>maven-plugins</groupId>
-      <artifactId>maven-javancss-plugin</artifactId>
-      <version>1.3</version>
-      <type>plugin</type>
-    </dependency>
-  </dependencies>
-  <build>
-    <sourceDirectory>src/java</sourceDirectory>
-    <unitTestSourceDirectory>src/test</unitTestSourceDirectory>
-    <unitTest>
-      <includes>
-        <include>**/Test*.java</include>
-      </includes>
-    </unitTest>
-  </build>
   <reports>
     <report>maven-dashboard-plugin</report>
   </reports>

Modified: maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/conf/test/changelog-report.xml
Url: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/conf/test/changelog-report.xml?view=diff&rev=126284&p1=maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/conf/test/changelog-report.xml&r1=126283&p2=maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/conf/test/changelog-report.xml&r2=126284
==============================================================================
--- maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/conf/test/changelog-report.xml	(original)
+++ maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/conf/test/changelog-report.xml	Mon Jan 24 06:05:52 2005
@@ -1,5 +1,23 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
 
+<!-- 
+/*
+ * Copyright 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.
+ */
+ -->
+
 <document>
   <properties>
     <title>Changelog Report</title>

Modified: maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/conf/test/changelog.xml
Url: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/conf/test/changelog.xml?view=diff&rev=126284&p1=maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/conf/test/changelog.xml&r1=126283&p2=maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/conf/test/changelog.xml&r2=126284
==============================================================================
--- maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/conf/test/changelog.xml	(original)
+++ maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/conf/test/changelog.xml	Mon Jan 24 06:05:52 2005
@@ -1,4 +1,23 @@
 <?xml version="1.0" encoding="ISO-8859-1" ?>
+
+<!-- 
+/*
+ * Copyright 2004-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.
+ */
+ -->
+  
 <!-- File used to simulate some changelog being generated. We're manually 
      introducing this file because we wish to be sure there are always
      changelogs in our tests (we are asserting for them in the top level

Modified: maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/conf/test/file-activity-report.xml
Url: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/conf/test/file-activity-report.xml?view=diff&rev=126284&p1=maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/conf/test/file-activity-report.xml&r1=126283&p2=maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/conf/test/file-activity-report.xml&r2=126284
==============================================================================
--- maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/conf/test/file-activity-report.xml	(original)
+++ maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/conf/test/file-activity-report.xml	Mon Jan 24 06:05:52 2005
@@ -1,5 +1,23 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
 
+<!-- 
+/*
+ * Copyright 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.
+ */
+ -->
+
 <document>
   <properties>
     <title>File Activity Analysis</title>

Modified: maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/maven.xml
Url: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/maven.xml?view=diff&rev=126284&p1=maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/maven.xml&r1=126283&p2=maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/maven.xml&r2=126284
==============================================================================
--- maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/maven.xml	(original)
+++ maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/maven.xml	Mon Jan 24 06:05:52 2005
@@ -1,6 +1,6 @@
 <!-- 
 /*
- * Copyright 2004 The Apache Software Foundation.
+ * Copyright 2004-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.

Modified: maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/project.xml
Url: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/project.xml?view=diff&rev=126284&p1=maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/project.xml&r1=126283&p2=maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/project.xml&r2=126284
==============================================================================
--- maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/project.xml	(original)
+++ maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject1/project.xml	Mon Jan 24 06:05:52 2005
@@ -2,7 +2,7 @@
 
 <!-- 
 /*
- * Copyright 2001-2004 The Apache Software Foundation.
+ * 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.
@@ -19,7 +19,7 @@
  -->
 
 <project>
-  <extend>${basedir}/../project.xml</extend>
+  <extend>${basedir}/../common/project.xml</extend>
   <id>test-maven-dashboard-plugin-subproject1</id>
   <name>Maven Dashboard plugin test - Subproject1</name>
   <dependencies>

Modified: maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject2/project.xml
Url: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject2/project.xml?view=diff&rev=126284&p1=maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject2/project.xml&r1=126283&p2=maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject2/project.xml&r2=126284
==============================================================================
--- maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject2/project.xml	(original)
+++ maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject2/project.xml	Mon Jan 24 06:05:52 2005
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
 <!-- 
 /*
- * Copyright 2001-2004 The Apache Software Foundation.
+ * 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.
@@ -18,12 +18,15 @@
  -->
 
 <project>
-  <extend>${basedir}/../project.xml</extend>
+  <extend>${basedir}/../common/project.xml</extend>
   <id>test-maven-dashboard-plugin-subproject2</id>
   <name>Maven Dashboard plugin test - Subproject2</name>
   <reports>
-    <!-- Voluntarily do not put any report. We're forcing the execution
-         of artifact goals using the maven.dashboard.rungoals=true 
-         property -->
+    <!-- Voluntarily do not put any report that are part of dashboard 
+         aggregators. We're forcing the execution of artifact goals using
+         the maven.dashboard.rungoals=true property. Note that we have
+         defined one because otherwise Maven seems to use the list of
+         default reports (that's strange and looks like a bug...). -->
+    <report>maven-linkcheck-plugin</report>
   </reports>
 </project>

Modified: maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject3/project.xml
Url: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject3/project.xml?view=diff&rev=126284&p1=maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject3/project.xml&r1=126283&p2=maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject3/project.xml&r2=126284
==============================================================================
--- maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject3/project.xml	(original)
+++ maven/maven-1/plugins/trunk/dashboard/src/plugin-test/subproject3/project.xml	Mon Jan 24 06:05:52 2005
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
 <!-- 
 /*
- * Copyright 2001-2004 The Apache Software Foundation.
+ * 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.
@@ -18,7 +18,7 @@
  -->
 
 <project>
-  <extend>${basedir}/../project.xml</extend>
+  <extend>${basedir}/../common/project.xml</extend>
   <id>test-maven-dashboard-plugin-subproject3</id>
   <name>Maven Dashboard plugin test - Subproject3</name>
 </project>

Modified: maven/maven-1/plugins/trunk/dashboard/xdocs/properties.xml
Url: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/dashboard/xdocs/properties.xml?view=diff&rev=126284&p1=maven/maven-1/plugins/trunk/dashboard/xdocs/properties.xml&r1=126283&p2=maven/maven-1/plugins/trunk/dashboard/xdocs/properties.xml&r2=126284
==============================================================================
--- maven/maven-1/plugins/trunk/dashboard/xdocs/properties.xml	(original)
+++ maven/maven-1/plugins/trunk/dashboard/xdocs/properties.xml	Mon Jan 24 06:05:52 2005
@@ -2,7 +2,7 @@
 
 <!-- 
 /*
- * Copyright 2001-2004 The Apache Software Foundation.
+ * 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.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org