I have setup a Jenkins job to build a project. I'm using email-ext plugin to send out build notifications with the intent of showing who did what and the path to the files changed. But unfortunately I'm not getting anything. I believe the reason why is that under "Source Code Management" I'm setting it to "None". My shell script that I'm using to drive the build is responsible for check-in out a copy of the code based on a CVS tag and run maven to do the build. In the ext-email i'm using the following syntax
${CHANGES_SINCE_LAST_SUCCESS, reverse=true, showPaths=true, format="\n====\nChanges for Build # %n\n%c\n", changesFormat="\n[%r] %d %a %m %p\n"}
Same thing with CHANGES
: ${CHANGES, showPaths=true}
Is there a way of getting CHANGES
and CHANGES_SINCE_LAST_SUCCESS
to work if None
option is used under Source Code Management?
Thanks for your help folks.