On 7/27/05, Jamie Bisotti <[EMAIL PROTECTED]> wrote: > Is anyone else getting an empty Developer Activity Report? This was > working, but stopped at some point. I try to update to the latest > available plugins as they are announced, so I'm guessing one of them > has broken this??? The Change Log and File Activity Reports are still > working just fine. Any ideas would be appreciated. > > -- > Jamie Bisotti >
After further investigation...Looks like the format of target/changes.xml, generated by maven-changelog-plugin, was changed from 1.7.2 to 1.81. The format was originally <changelog><changelog-entry/></changelog>; however, it was changed to <changelog><changeset><changelog-entry/></changeset></changelog>. The problem is the maven-developer-activity-plugin, which uses target/changes.xml was not updated for this. So, as far as I can tell, anyone using maven-changelog-plugin 1.8.0+ cannot be successfully generating a Developer Activity Report. Either that, or I need to get more sleep and/or drink more coffee. Does no one else use this plugin? Fix/workaround: In your local Maven repo, edit .maven/cache/maven-developer-activity-plugin-1.5.1/plugin-resources/developer-activity.jsl and replace all occurrances of "./changelog-entry" with "./changeset/changelog-entry". http://jira.codehaus.org/browse/MPDEVACTIVITY-4 -- Jamie Bisotti --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
