If I recall correctly, you should create a .vm in your resource directory
for example
project
+--- src
+---main
+---resources
+---templateDir
+---mytemplate.vm
and configure changes plugin
<build>
...
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>changes-maven-plugin</artifactId>
<configuration>
<templateDirectory>templateDir</templateDirectory>
<template>mytemplate.vm</template>
</configuration>
</plugin>
</plugins>
</builld>
-allan
John Menke wrote:
Does anyone know how to customize the email that is generated by the changes
plugin?
I am using Maven2.
Any help would be greatly appreciated.
-jm
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]