Hello,
How can I troubleshoot the maven-changelog-plugin? I defined <scm> in my
pom.xml and declared to use maven-changelog-plugin in <reporting> as below.
However, I still don't see any report coming out of that. Any ideas? I'm
using Perforce.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changelog-plugin</artifactId>
<reportSets>
<reportSet>
<id>change-log</id>
<configuration>
<type>range</type>
<range>300</range>
</configuration>
<reports>
<report>changelog</report>
</reports>
</reportSet>
</reportSets>
</plugin>
Thanks
Yan