Can't get automated release working with Hudson + Git + Maven Release Plugin
- by Christopher Maier
As the title says, I'm trying to get an automated release job working on Hudson. It's a Maven project, and all the code is in Git. Manually, I do the release on my personal machine like so:
git checkout master
mvn -B release:prepare release:perform
This works perfectly. The Maven release plugin properly pushes the release tag to the origin…