Here is my changelog configuration:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changelog-plugin</artifactId>
<version>2.0-SNAPSHOT</version>
<configuration>
<type>date</type>
<dates>
<date implementation="java.lang.String
">2006-06-01</date>
<date implementation="java.lang.String
">2006-09-01</date>
</dates>
<dateFormat>yyyy-MM-dd</dateFormat>
</configuration>
</plugin>
But you also have to add the Maven Snapshot plugin repository in your
pom.xml or setting.xml
<pluginRepositories>
<pluginRepository>
<id>apache.snapshots</id>
<url>http://people.apache.org/maven-snapshot-repository/</url>
</pluginRepository>
</pluginRepositories>
Rémy
2006/11/29, George Stragand <[EMAIL PROTECTED]>:
I see the pages for changelog, however when I attempt to add it to my
reports and run a site, I get "The plugin '
org.apache.maven.plugins:maven-changelog-plugin' does not exist or no
valid
version could be found". Is there a different plugin repo I need to pull
from?
I'd really like to go to subversion in the future, right now I am stuck as
I
interited a bunch of code so installing a new version control system is
not
a priority.