views:

49

answers:

1

I have recently began delving into git and maven. I have a system that has several module sets and this is stored in various git repositories, I need this to be pulled down into the same workspace and run various maven goals.

I was wondering if anyone else has run through this setup and provide tired and true way of doing this.

I would apprecaite tutorial and solution you have come up with on your bouts with maven and git.

Please and thank you.

GC.

+2  A: 

I have a system that has several module sets and this is stored in various git repositories, I need this to be pulled down into the same workspace (...) .

With Subversion, I would use svn:externals for this. So my suggestion would be to check the SVN external in GIT question here on SO.

(...) and run various maven goals

There is nothing particular to say about Maven, as long as you get the appropriate structure out of your various Git repositories. And for the release part, just declare the relevant GIT SCM URL in the <scm> element of the various modules.

Pascal Thivent