On 1/9/2013 1:29 PM, Peter Klügl wrote: > I adapted the pom in comparison to the uima-as pom and haven't thought much > about it. > > I'll remove the second version and do some testing with the order tomorrow. > Ok, thanks, no problem. We're all on a continuous learning curve here :-)
-Marshall > Peter > > Am 09.01.2013 18:43, schrieb Marshall Schor: >> The version spec should only be in the <pluginManagement><plugins> section, >> not >> also in the <build>...<plugins> section. This makes it easier to maintain >> (version changes only go in one spot). >> >> >> In the <build><plugins> section for the changes plugin, this change also >> changed >> the sortColumnNames. This should probably be changed in the >> <build><pluginManagement><plugins> section - we want it inherited by all. >> >> Is this the right order for this version of Jira? >> >> Was: Status, Key, Type >> Now: Type, Status, Key >> >> I vaguely recall some Jira interpretation change of the meaning of this >> order... >> >> -Marshall >> >> On 1/9/2013 10:39 AM, pklu...@apache.org wrote: >>> Author: pkluegl >>> Date: Wed Jan 9 15:39:56 2013 >>> New Revision: 1430901 >>> >>> URL: http://svn.apache.org/viewvc?rev=1430901&view=rev >>> Log: >>> UIMA-2558 >>> - fixed config of maven-changes-plugin for Jira >4 >>> >>> Modified: >>> uima/build/trunk/parent-pom/pom.xml >>> >>> Modified: uima/build/trunk/parent-pom/pom.xml >>> URL: >>> http://svn.apache.org/viewvc/uima/build/trunk/parent-pom/pom.xml?rev=1430901&r1=1430900&r2=1430901&view=diff >>> ============================================================================== >>> --- uima/build/trunk/parent-pom/pom.xml (original) >>> +++ uima/build/trunk/parent-pom/pom.xml Wed Jan 9 15:39:56 2013 >>> @@ -136,7 +136,7 @@ >>> <system>Jira</system> >>> <!-- the form of the url is from >>> http://maven.apache.org/plugins/maven-changes-plugin/usage.html --> >>> >>> <!--url>https://issues.apache.org/jira/BrowseProject.jspa?projectId=12310570</url--> >>> - >>> <url>https://issues.apache.org/jira/browse/UIMA?projectId=12310570</url> >>> + <url>https://issues.apache.org/jira/browse/UIMA</url> >>> </issueManagement> >>> @@ -560,7 +560,7 @@ Copyright (c) 2003, 2006 IBM Corporation >>> <plugin> >>> <groupId>org.apache.maven.plugins</groupId> >>> <artifactId>maven-changes-plugin</artifactId> >>> - <version>2.6</version> >>> + <version>2.8</version> >>> <executions> >>> <execution> >>> <id>default-cli</id> >>> @@ -568,6 +568,7 @@ Copyright (c) 2003, 2006 IBM Corporation >>> <!-- don't use generate-sources - because javadoc plugin >>> re-exec's that --> >>> <phase>generate-resources</phase> >>> <configuration> >>> + <useJql>true</useJql> >>> <fixVersionIds>${jiraVersion}</fixVersionIds> >>> <columnNames>Type,Key,Status,Summary</columnNames> >>> <resolutionIds>Fixed</resolutionIds> >>> @@ -759,11 +760,13 @@ Copyright (c) 2003, 2006 IBM Corporation >>> <plugins> >>> <plugin> >>> <artifactId>maven-changes-plugin</artifactId> >>> + <version>2.8</version> >>> <executions> >>> <execution> >>> <id>default-cli</id> >>> <configuration> >>> <fixVersionIds>${jiraVersion}</fixVersionIds> >>> + <sortColumnNames>Type, Status, Key</sortColumnNames> >>> </configuration> >>> </execution> >>> </executions> >>> >>> >>> > >