You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by vs...@apache.org on 2008/07/15 01:18:20 UTC

svn commit: r676766 - in /maven/plugins/trunk/maven-project-info-reports-plugin: pom.xml src/site/site.xml

Author: vsiveton
Date: Mon Jul 14 16:18:19 2008
New Revision: 676766

URL: http://svn.apache.org/viewvc?rev=676766&view=rev
Log:
o adding a release notes link with maven-changes-plugin

Modified:
    maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml
    maven/plugins/trunk/maven-project-info-reports-plugin/src/site/site.xml

Modified: maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml?rev=676766&r1=676765&r2=676766&view=diff
==============================================================================
--- maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml Mon Jul 14 16:18:19 2008
@@ -113,6 +113,30 @@
     </plugins>
   </build>
 
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-changes-plugin</artifactId>
+        <version>2.0</version>
+        <configuration>
+          <!-- For JIRA-report -->
+          <columnNames>Type,Key,Summary,Assignee,Status,Resolution,Fix Version</columnNames>
+          <onlyCurrentVersion>true</onlyCurrentVersion>
+          <resolutionIds>Closed</resolutionIds>
+          <sortColumnNames>Type,Key</sortColumnNames>
+        </configuration>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>jira-report</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+    </plugins>
+  </reporting>
+
   <dependencies>
     <!-- Maven -->
     <dependency>

Modified: maven/plugins/trunk/maven-project-info-reports-plugin/src/site/site.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-project-info-reports-plugin/src/site/site.xml?rev=676766&r1=676765&r2=676766&view=diff
==============================================================================
--- maven/plugins/trunk/maven-project-info-reports-plugin/src/site/site.xml (original)
+++ maven/plugins/trunk/maven-project-info-reports-plugin/src/site/site.xml Mon Jul 14 16:18:19 2008
@@ -26,6 +26,7 @@
       <item name="Goals" href="plugin-info.html"/>
       <item name="Usage" href="usage.html"/>
       <item name="FAQ" href="faq.html"/>
+      <item name="Release Notes" href="jira-report.html"/>
     </menu>
     <menu name="Examples">
       <item name="Run Selective Reports" href="examples/selective-project-info-reports.html"/>