Hey Dennis I've taken a look at the new changes plugin, including the documentation, but I run into a problem when I try to add a filter to my report configuration. When I add the following filter to the pom, running changes gives a 500 error.
<filter>&sorter/field=priority&sorter/order=DESC&sorter/field=updated&sorter/order=DESC&sorter/field=fixVersions&sorter/order=ASC</filter> It seems that the leading & is removed from the url. A small comment on the document is that I'd also put an example with a configuration in there. For the user not familiar with the configuration tag, the tags describes don't mean a thing. Roald Bankras Software Engineer JTeam b.v. -----Original Message----- From: Dennis Lundberg [mailto:[EMAIL PROTECTED] Sent: Monday, July 24, 2006 5:41 PM To: Maven Users List Subject: Re: changes plugin and jira-report 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] -- No virus found in this incoming message. Checked by AVG Free Edition. Version: 7.1.394 / Virus Database: 268.10.3/395 - Release Date: 7/21/2006 -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.1.394 / Virus Database: 268.10.4/402 - Release Date: 7/27/2006 --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
