On 14 March 2012 01:17, Gary Gregory <[email protected]> wrote: > Here is what we have in [io] now: > > <configuration> > <xmlPath>${basedir}/src/changes/changes.xml</xmlPath> > <issueLinkTemplate>%URL%/%ISSUE%</issueLinkTemplate> > <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> > <maxEntries>300</maxEntries> > </configuration> > > I would be nice to use properties for maxEntries so the whole config does > not have to be repeated. > > Thoughts?
Try it and see whether that works. > Gary > > On Tue, Mar 13, 2012 at 8:43 PM, <[email protected]> wrote: > >> Author: sebb >> Date: Wed Mar 14 00:43:23 2012 >> New Revision: 1300429 >> >> URL: http://svn.apache.org/viewvc?rev=1300429&view=rev >> Log: >> Add changes and Jira reports >> >> Modified: >> commons/proper/commons-parent/trunk/pom.xml >> commons/proper/commons-parent/trunk/src/changes/changes.xml >> >> Modified: commons/proper/commons-parent/trunk/pom.xml >> URL: >> http://svn.apache.org/viewvc/commons/proper/commons-parent/trunk/pom.xml?rev=1300429&r1=1300428&r2=1300429&view=diff >> >> ============================================================================== >> --- commons/proper/commons-parent/trunk/pom.xml (original) >> +++ commons/proper/commons-parent/trunk/pom.xml Wed Mar 14 00:43:23 2012 >> @@ -39,6 +39,7 @@ Version 25: >> Updated various plugin versions: >> clirr-maven-plugin: 2.3 => 2.4; >> clirr & RAT added to pluginManagement so can override the version from >> Apache POM >> + Add changes and jira reports >> >> For full details see: >> >> http://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-25/RELEASE-NOTES.txt >> @@ -471,6 +472,29 @@ http://svn.apache.org/repos/asf/commons/ >> <!-- org.apache.maven.plugins, alpha order by artifact id --> >> <plugin> >> <groupId>org.apache.maven.plugins</groupId> >> + <artifactId>maven-changes-plugin</artifactId> >> + <version>${commons.changes.version}</version> >> + <configuration> >> + <xmlPath>${basedir}/src/changes/changes.xml</xmlPath> >> + <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> >> + </reports> >> + </reportSet> >> + </reportSets> >> + </plugin> >> + <plugin> >> + <groupId>org.apache.maven.plugins</groupId> >> <artifactId>maven-javadoc-plugin</artifactId> >> <version>${commons.javadoc.version}</version> >> <configuration> >> >> Modified: commons/proper/commons-parent/trunk/src/changes/changes.xml >> URL: >> http://svn.apache.org/viewvc/commons/proper/commons-parent/trunk/src/changes/changes.xml?rev=1300429&r1=1300428&r2=1300429&view=diff >> >> ============================================================================== >> --- commons/proper/commons-parent/trunk/src/changes/changes.xml (original) >> +++ commons/proper/commons-parent/trunk/src/changes/changes.xml Wed Mar 14 >> 00:43:23 2012 >> @@ -59,8 +59,9 @@ The <action> type attribute can be add,u >> <release version="25" date="2012-??-??" description="Update >> plugins"> >> <action type="update"> >> Updated various plugin versions: >> - clirr-maven-plugin: 2.3 => 2.4 >> - clirr & RAT added to pluginManagement so can override the >> version from Apache POM >> + clirr-maven-plugin: 2.3 => 2.4 >> + clirr & RAT added to pluginManagement so can override the >> version from Apache POM >> + Add changes and jira reports >> </action> >> </release> >> <release version="24" date="2012-03-13" description="Update and >> add plugins"> >> >> >> > > > -- > E-Mail: [email protected] | [email protected] > JUnit in Action, 2nd Ed: <http://goog_1249600977>http://bit.ly/ECvg0 > Spring Batch in Action: <http://s.apache.org/HOq>http://bit.ly/bqpbCK > Blog: http://garygregory.wordpress.com > Home: http://garygregory.com/ > Tweet! http://twitter.com/GaryGregory --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
