[
https://issues.apache.org/jira/browse/MCHANGES-349?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Michael Osipov closed MCHANGES-349.
-----------------------------------
Resolution: Auto Closed
This issue has been auto closed because it has been inactive for a long period
of time. If you think this issue still applies, retest your problem with the
most recent version of Maven and the affected component, reopen and post your
results.
> Strange behaviour for issueManagement url on github
> ---------------------------------------------------
>
> Key: MCHANGES-349
> URL: https://issues.apache.org/jira/browse/MCHANGES-349
> Project: Maven Changes Plugin
> Issue Type: Task
> Components: changes.xml, github
> Affects Versions: 2.11
> Environment: tested on Mac with maven 3.2.3
> tested on Win8 with maven 3.2.3
> Reporter: Tigran Tchougourian
> Priority: Minor
>
> Hello,
> According to the documentation :
> http://maven.apache.org/plugins/maven-changes-plugin/usage.html#How_to_Generate_the_GitHub_Report
> I can write this
> {code:xml:Title="pom.xml"}
> ...
> <issueManagement>
> <system>GitHub</system>
> <url>https://github.com/NargiT/random-media/issues</url>
> </issueManagement>
> ...
> {code}
> But when I run {code:xml}$ mvn site{code} the report : changes-report do not
> handle issues correctly from the changes.xml
> {code:xml|Title="pom.xml"}
> ...
> <plugins>
> <plugin>
> <groupId>org.apache.maven.plugins</groupId>
> <artifactId>maven-changes-plugin</artifactId>
> <version>2.11</version>
> <reportSets>
> <reportSet>
> <reports>
> <report>changes-report</report>
> <report>github-report</report>
> </reports>
> </reportSet>
> </reportSets>
> </plugin>
> </plugins>
> ...
> {code}
> {code:xml|Title="changes.xml"}
> ...
> <release version="0.0.1" date="2014-12-11" description="First release">
> <action dev="nargit" type="add">
> <fixes issue="1" />
> </action>
> </release>
> ...
> {code}
> Instead to generate
> *{color:green}https://github.com/NargiT/random-media/issues/1{color}*,
> changes-report.html generates https://github.com/NargiT/random-media/1
> If I add an extra ' */* ' at the end, it solve my problem.
> {code:xml}
> <issueManagement>
> <system>GitHub</system>
> <url>https://github.com/NargiT/random-media/issues/</url>
> </issueManagement>
> {code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)