I'm working with a few developers and we would like to share some jars as we're working through the early iteration of a projects code. We would like to just pop up a quick private maven repository server to use for a short bit. In ruby it's a simple as typing:
gem server
Apparently, there's no?
mvn server
Even a simple maven dependency to github would be workable for a short bit. Apparently, there is no main-stream reliable maven plug-in for that either?
gem 'nokogiri', :git => 'https://github.com/tenderlove/nokogiri.git', :branch => '1.4'
The simplest answer I found is here: Hosting a Maven repository on github.
Of course one of the answers in the above StackOverflow reference is in the vein "Oh don't do that! It's very bad!". Well no duh! I got the impression that generally people didn't want to do it, but there wasn't a quicker and simpler choice for a minimal small solution.
Is there?
Michael Corleone: Just when I thought I was out... they pull me back in to code Java again.