juergen.schumacher wrote:
Hi,
I need the changes plugin to create a report about the changes done in jira.
So far (after a while, try and error) the plugin could logon the jira
system. Here the output:
[INFO] Succesfully logged in into JIRA.
[INFO] Downloading
http://localhost:8083/jira/secure/IssueNavigator.jspa?view=rss&pid=10000&sorter/field=created&sorter/order=DESC&sorter/field=priority&sorter/order=DESC&tempMax=100&reset=true&decorator=none
[WARNING] Received: [503]
org.xml.sax.SAXParseException: White spaces are required between publicId
and sy
stemId...................
.........................
As you can see there is an error complaining about white spaces.
Whats that? Had anybody similar effects and maybe any Idea ??? I found one
in this forum with similar error messages but no solution.
Hi
What version of the plugin are you using? I published a
2.0-beta-2-SNAPSHOT for the Apache version of the plugin last week.
Please try it out if you are using the one from Mojo. Use this in your pom:
<project>
...
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<report>jira-report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
...
</project>
You can view a snapshot of the documentation (still a work in progress)
for that version of the plugin here:
http://people.apache.org/~dennisl/maven-changes-plugin/
Note that you may need to add the snapshot repository at Apache to be
able to download it. You can do this in your pom as well:
<project>
...
<pluginRepositories>
<pluginRepository>
<id>apache-snapshots</id>
<name>Apache snapshots</name>
<url>http://people.apache.org/maven-snapshot-repository/</url>
</pluginRepository>
</pluginRepositories>
...
</project>
<snip/>
--
Dennis Lundberg
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]