MPJIRA-3. Fix jira downloading url for some jira instance like Apache.
git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@115999 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
93c1335bfb
commit
f61a99c6f2
@ -23,7 +23,7 @@
|
||||
<pomVersion>3</pomVersion>
|
||||
<id>maven-jira-plugin</id>
|
||||
<name>Maven JIRA Plug-in</name>
|
||||
<currentVersion>1.1.1</currentVersion>
|
||||
<currentVersion>1.1.2-SNAPSHOT</currentVersion>
|
||||
<description>This plugin download issues from Jira and create a report.</description>
|
||||
<shortDescription>Download issue from Jira</shortDescription>
|
||||
<url>http://maven.apache.org/reference/plugins/jira/</url>
|
||||
|
||||
@ -112,7 +112,7 @@ public class JiraDownloader
|
||||
int pos = url.indexOf("?");
|
||||
String id = url.substring(pos+4);
|
||||
url = url.substring(0, url.lastIndexOf("/"));
|
||||
link = url + "/secure/IssueNavigator.jspa?view=rss&pid=" + id + "&sorter/field=issuekey&sorter/order=DESC&sorter/field=status&sorter/order=DESC&tempMax=" + String.valueOf(nbEntriesMax) + "&reset=true";
|
||||
link = url + "/secure/IssueNavigator.jspa?view=rss&pid=" + id + "&sorter/field=issuekey&sorter/order=DESC&sorter/field=status&sorter/order=DESC&tempMax=" + String.valueOf(nbEntriesMax) + "&reset=true&decorator=none";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -24,6 +24,9 @@
|
||||
<author email="brett@apache.org">Brett Porter</author>
|
||||
</properties>
|
||||
<body>
|
||||
<release version="1.1.2" date="In CVS">
|
||||
<action dev="evenisse" type="fix" issue="MPJIRA-3">Fix jira downloading url for some jira instance like Apache.</action>
|
||||
</release>
|
||||
<release version="1.1.1" date="2004-07-10">
|
||||
<action dev="brett" type="update">Update commons-httpclient dependency</action>
|
||||
</release>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user