3

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

ripper234
  • 222,824
  • 274
  • 634
  • 905

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
  • 562,542
  • 136
  • 1,062
  • 1,124
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
  • 31,461
  • 5
  • 66
  • 67
  • 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