You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2012/03/28 13:45:26 UTC

svn commit: r1306268 - /commons/proper/math/trunk/pom.xml

Author: sebb
Date: Wed Mar 28 11:45:25 2012
New Revision: 1306268

URL: http://svn.apache.org/viewvc?rev=1306268&view=rev
Log:
Update to CP24
Restore changes/JIRA reports accidentally dropped when tidying pom

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

Modified: commons/proper/math/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/pom.xml?rev=1306268&r1=1306267&r2=1306268&view=diff
==============================================================================
--- commons/proper/math/trunk/pom.xml (original)
+++ commons/proper/math/trunk/pom.xml Wed Mar 28 11:45:25 2012
@@ -19,7 +19,7 @@
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-parent</artifactId>
-    <version>23</version>
+    <version>24</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.commons</groupId>
@@ -345,6 +345,37 @@
   <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>
+          <!-- The default is 100 -->
+          <maxEntries>100</maxEntries>
+        </configuration>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>changes-report</report>
+              <report>jira-report</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+
+      <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>findbugs-maven-plugin</artifactId>
         <version>2.4.0</version>