Author: ggregory
Date: Tue Mar 6 21:50:04 2012
New Revision: 1297741
URL: http://svn.apache.org/viewvc?rev=1297741&view=rev
Log:
Add JIRA report for all versions so you can see what has been fixed no matter
what version you are updating from.
Modified:
commons/proper/io/trunk/pom.xml
Modified: commons/proper/io/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/commons/proper/io/trunk/pom.xml?rev=1297741&r1=1297740&r2=1297741&view=diff
==============================================================================
--- commons/proper/io/trunk/pom.xml (original)
+++ commons/proper/io/trunk/pom.xml Tue Mar 6 21:50:04 2012
@@ -46,7 +46,7 @@
<url>${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/${commons.componentid}</url>
</site>
</distributionManagement>
-
+
<scm>
<connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/io/trunk</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/io/trunk</developerConnection>
@@ -103,7 +103,7 @@
<name>Jeremias Maerki</name>
<id>jeremias</id>
<email>[email protected]</email>
- <organization/>
+ <organization />
<roles>
<role>Java Developer</role>
</roles>
@@ -113,7 +113,7 @@
<name>Matthew Hawthorne</name>
<id>matth</id>
<email>[email protected]</email>
- <organization/>
+ <organization />
<roles>
<role>Java Developer</role>
</roles>
@@ -122,7 +122,7 @@
<name>Martin Cooper</name>
<id>martinc</id>
<email>[email protected]</email>
- <organization/>
+ <organization />
<roles>
<role>Java Developer</role>
</roles>
@@ -131,7 +131,7 @@
<name>Rob Oxspring</name>
<id>roxspring</id>
<email>[email protected]</email>
- <organization/>
+ <organization />
<roles>
<role>Java Developer</role>
</roles>
@@ -233,28 +233,28 @@
<commons.release.2.desc>(requires JDK 1.3+)</commons.release.2.desc>
<commons.jira.id>IO</commons.jira.id>
<commons.jira.pid>12310477</commons.jira.pid>
- </properties>
+ </properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <forkMode>pertest</forkMode>
- <!-- limit memory size see IO-161 -->
- <argLine>-Xmx25M</argLine>
- <includes>
- <!-- Only include test classes, not test data -->
- <include>**/*Test*.class</include>
- </includes>
- <excludes>
- <exclude>**/*AbstractTestCase*</exclude>
- <exclude>**/testtools/**</exclude>
+ <configuration>
+ <forkMode>pertest</forkMode>
+ <!-- limit memory size see IO-161 -->
+ <argLine>-Xmx25M</argLine>
+ <includes>
+ <!-- Only include test classes, not test data -->
+ <include>**/*Test*.class</include>
+ </includes>
+ <excludes>
+ <exclude>**/*AbstractTestCase*</exclude>
+ <exclude>**/testtools/**</exclude>
- <!-- http://jira.codehaus.org/browse/SUREFIRE-44 -->
- <exclude>**/*$*</exclude>
- </excludes>
+ <!-- http://jira.codehaus.org/browse/SUREFIRE-44 -->
+ <exclude>**/*$*</exclude>
+ </excludes>
</configuration>
</plugin>
<plugin>
@@ -304,16 +304,23 @@
<xmlPath>${basedir}/src/changes/changes.xml</xmlPath>
<issueLinkTemplate>%URL%/%ISSUE%</issueLinkTemplate>
<!-- TODO: <onlyCurrentVersion>true</onlyCurrentVersion> -->
+ <columnNames>Fix
Version,Key,Component,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>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>changes-report</report>
- <!-- <report>jira-report</report> -->
+ <report>jira-report</report>
</reports>
</reportSet>
</reportSets>
- </plugin>
- </plugins>
+ </plugin>
+ </plugins>
</reporting>
</project>