Details
-
Test
-
Status: Closed
-
Minor
-
Resolution: Cannot Reproduce
-
None
-
None
-
None
-
Maven-2.0.9
Description
I'm trying to configure an alternative issueManagement system.
In the parent POM the maven-changes-plugin is configured in the reporting section as:
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changes-plugin</artifactId> <version>2.3</version> <configuration> <addActionDate>true</addActionDate> <issueLinkTemplatePerSystem> <livelink>%URL%?func=ll&objId=%ISSUE%&objAction=BrowseTask</livelink> </issueLinkTemplatePerSystem> </configuration> <reportSets><reportSet><reports><report>changes-report</report></reports></reportSet></reportSets> </plugin>
In the project POM I've my issueManagement system defined as:
<issueManagement> <system>livelink</system> <url>http://safe.expandedmedia.com/livelink/livelink.exe/</url> </issueManagement>
Now i would expect that for all issues listed in the attached changes.xml that a link to my issue management system would be created but it doesn't. It generates the changes-report but without taking into consideration the parameters (not even the addActionDate) I've defined in my parent POM.