如何配置我的changes.xml和pom文件,以便在maven站點上鍊接JIRA問題。 我包括maven-changes插件。但是我想看看我們如何爲JIRA添加bug,因爲我爲bugzilla添加了以下內容。pom需要更改JIRA鏈接
JIRA https://bugs.abc.corp/enter_bug.cgi?product= $ {} project.groupId組件& = $ {} project.artifactId
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<version>2.2</version>
<configuration>
<issueLinkTemplatePerSystem>
<bugzilla><![CDATA[http://internal.bugtracker/show_bug.cgi?id=%ISSUE%]]></bugzilla>
<navigator><![CDATA[http://external.bugtracker/?cr=%ISSUE%]]></navigator>
</issueLinkTemplatePerSystem>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>changes-report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
我得到了它,按照通常的報告部分以及在同一行工作的URL。將添加一個單獨的評論來粘貼該部分 – ND27