3

How would you collaborate on a Maven project with another developer, without setting up a repository on a dedicated server?

ripper234
  • 202,011
  • 255
  • 600
  • 878

2 Answers2

3

There is another option: use a file-based repository stored in your version control system and install your few 3rd party jars into it.

Community
  • 1
  • 1
Pascal Thivent
  • 535,937
  • 127
  • 1,027
  • 1,106
1

You have two options:

  • run a repository manager, e.g. Nexus on one of the developer's machines and all developers could use that repository
  • everyone will have to rebuild required dependencies from the source code taken from version control system
Eugene Kuleshov
  • 30,122
  • 5
  • 61
  • 63
  • 1
    That doesn't sound too sweet. Isn't there another way to resolve those few 3rd party jars that aren't uploaded to the main repository? – ripper234 Nov 13 '10 at 08:13