When using "http://nagoya.apache.org/jira/browse/JS2" for the <issueTrackerUrl> the following error is received. Notice the "pid" attribute on the url.
BUILD FAILED
File...... c:\maven_repo\1.0-rc4\cache\maven-xdoc-plugin-1.7.2\plugin.jelly
Element... x:parse
Line...... 119
Column.... 48
Error on line 27 of document file:/C:/cvs_apache/jakarta-jetspeed-2/target/jira/jira-results.xml : The element type "link" must be terminated by the matching end-tag "</link>". Nested exception: The element type "link" must be terminated by the matching end-tag "</link>".
Total time: 4 seconds
Finished at: Sat Jul 10 05:31:54 EDT 2004
Michael Franken added a comment - 29/Jul/05 06:21 PM you could simply fix this by checking the result of
String url = ((Project)getProject()).getIssueTrackingUrl();
int pos = url.indexOf("?");
String id = url.substring(pos + 4);
in JiraDownloader.java
make the id empty string if pos < 0
I don't know how to obtain the xml result with the id (like JS2). And you?