I'm new to both maven and git and wanted to get some help in setting a project.
Is there a way to define a goal in the pom to push/pull from git during linked to a maven phase? For example, can I pull from git during the maven install phase?
If yes, how can that be accomplished? I would appreciate any code examples.
Good idea or not, here's how you could do a checkout (
pullclone from Github) using Maven. Have your pom.xml look like this:Then use
mvn scm:checkout
. When I ran this, it pulled the code to foldertarget/engesoft
. There's probably a way to configure it to place it somewhere else. Check out the following pages:Instead of doing this during the Maven build, use a CI server like Jenkins. It will do the
git pull
before running maven, so the build tool can concentrate on it's main purpose: Building source code.This also makes it more simple for you to develop since pull's will only happen when you want them. If you pull all the time, another developer can change something and you will get errors that you don't expect.
The scm:checkout goal Vitor is referring to is a clone, not a pull (huge difference in Git).
I had to use the exec goal to do what you're describing. I also didn't want to do an entire clone each time there was a build. Instead, I use git reset --hard and then pull -f origin Release:Release (via exec).
If I find a better way (and there HAS to be one) I'll post it here.