Reputation: 1009
After performing a 'mvn deploy
' or 'mvn release
', I want to send email to users in a mailing list ?
Is there any maven plugin which does this ?
Upvotes: 4
Views: 1171
Reputation: 97477
I would recommend to do this only in case of mvn release:prepare release:perform and use the maven-changes-plugin which exactly handles such things.
Upvotes: 4