How would you collaborate on a Maven project with another developer, without setting up a repository on a dedicated server?
Asked
Active
Viewed 281 times
2 Answers
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
-
This is what I needed, great. – ripper234 Nov 13 '10 at 15:16
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
-
1That 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