You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2013/04/27 16:45:34 UTC

svn commit: r1476594 - /commons/proper/collections/trunk/pom.xml

Author: tn
Date: Sat Apr 27 14:45:34 2013
New Revision: 1476594

URL: http://svn.apache.org/r1476594
Log:
Fix jira-report, snippet taken from commons-math.

Modified:
    commons/proper/collections/trunk/pom.xml

Modified: commons/proper/collections/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/pom.xml?rev=1476594&r1=1476593&r2=1476594&view=diff
==============================================================================
--- commons/proper/collections/trunk/pom.xml (original)
+++ commons/proper/collections/trunk/pom.xml Sat Apr 27 14:45:34 2013
@@ -520,6 +520,35 @@
   <reporting>
     <plugins>
       <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-changes-plugin</artifactId>
+        <version>${commons.changes.version}</version>
+        <configuration>
+          <issueLinkTemplatePerSystem>
+            <default>%URL%/%ISSUE%</default>
+          </issueLinkTemplatePerSystem>
+          <!--  Add sample JIRA report - 'mvn changes:jira-report' or 'mvn site' -->
+          <onlyCurrentVersion>false</onlyCurrentVersion>
+          <columnNames>Fix Version,Key,Summary,Type,Resolution,Status</columnNames>
+          <!-- Sort cols have to be reversed in JIRA 4 -->
+          <sortColumnNames>Key DESC,Type,Fix Version DESC</sortColumnNames>
+          <resolutionIds>Fixed</resolutionIds>
+          <statusIds>Resolved,Closed</statusIds>
+          <!-- Don't include sub-task -->
+          <typeIds>Bug,New Feature,Task,Improvement,Wish,Test</typeIds>
+          <fixVersionIds>${commons.release.version}</fixVersionIds>
+          <maxEntries>500</maxEntries>
+        </configuration>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>changes-report</report>
+              <report>jira-report</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+      <plugin>
         <artifactId>maven-checkstyle-plugin</artifactId>
         <version>${checkstyle.version}</version>
         <configuration>