Hi Everyone, I have a branch but when i run the report on the branch, it is getting the report from the branch and head.the pom file for the branch specify the tag but the changelog does not use this information. Is it possible to get just the changelog for the branch ? We are seeing the same problem for the head, the change log for the head is getting the changelog from the branch.
<scm> <connection> ... url to cvs </connection> <!-- Later change the userid to build user id --> <developerConnection> ... url to cvs </developerConnection> <tag>tagName...</tag> </scm> using latest changelog plugin <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>changelog-maven-plugin</artifactId> <version>2.0-beta-2-SNAPSHOT</version> <reportSets> <reportSet> <id>allReports</id> <configuration> <basedir>${basedir}</basedir> <type>range</type> <range>${range}</range> </configuration> <reports> <report>changelog</report> <report>dev-activity</report> <report>file-activity</report> </reports> </reportSet> </reportSets> </plugin> -- -Gautham Pamu