Hi,
Is there a simple way to send out email notifications in Maven for each build without outside CI tools, just like Ant?
|
|
Hi, Is there a simple way to send out email notifications in Maven for each build without outside CI tools, just like Ant? |
|||
|
|
|
|
If CI is not an option I would use a simple script wrapper:
If you do decide to use a CI tool, I would strongly recommend Hudson. The installation page shows how easy it is to run. Continuous integration server sounds pompous and enterprisey, but Hudson is dead-simple. |
||
|
|
|
I'd strongly recommend using a CI tool to manage this for you, I personally like to configure which emails are to be sent on the build to avoid spamming. For example only notify when the build starts failing, or starts working again, not on every failure. If you're sure this is the right approach, you can use the maven-changes-plugin to send an email on each build. You can customise the mail template with velocity, and bind the execution of the goals to an appropriate phase so it is sent when you want it. I'd also put the configuration in a profile so it is sent when you want it to be (i.e. when the profile is active). The configuration looks something like this:
|
||||||||
|
|
|
I don't use Maven, but I think you can do this with a plugin. |
||
|