3

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

ripper234
  • 212,480
  • 262
  • 617
  • 892

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
  • 549,808
  • 132
  • 1,049
  • 1,115
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,915
  • 5
  • 64
  • 66
  • 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