Hi, I'am using the maven-changelog-plugin v2.1 successfully with SVN. I use the default configuration and I got 3 reports : change log, dev activity, file activity. I 'am quite happy with that!
Those reports use a timespan of 30 days by default. But I want to get the changes beetwen my current version and the last one! I mean betwwen xxxxx/trunk and ...../tags/x.y.z In the FAQ (http://maven.apache.org/plugins/maven-changelog-plugin/examples/configuration-tag-type.html), the "tag type" is documented but is it just the tag name? Furthermore, tag type is not supported by SVN (!)... My first idea was to try to hack the system with something like , but I can't test it because SVN is not supported. <configuration> <type>tag</type> <tags> <tag implementation="java.lang.String">x.y.z</tag> <tag implementation="java.lang.String">../trunk</tag> </tags> </configuration> ... I hope plugin developper is building url with ${tagurl}/(value of tag element) ... But even if this hack will work, when I use mvn release:prepare mvn release:perform, I will like to replace ../trunk by x.y.z+1 (my new tag created by release:prepare)... I have tried with version 2.2-SNAPSHOT, but SVN is still not supported by "tag" type. So my question is : what do you use to create a changelog of changes occured in the current version of your artefact? and how do you use that with the release plugin. (Note : I have an homemade issue management system not compatible with maven-changes-plugin...) May be I want to do sth that nobody needs? Thx. -- Julien Graglia --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
