Is there any package for a Maven repository manager? I searched for some of the ones I know, but couldn't find any. I'm wondering if they are just not available, if they have names different than what I searched for, or, perhaps, if there's some I may have missed.
Asked
Active
Viewed 1,291 times
2 Answers
1
http://archiva.apache.org/docs/1.4-M4-SNAPSHOT/adminguide/standalone.html
If you use Puppet to manage your infrastructure, you can use a third-party Puppet module to install Archiva. This will take care of adding the required users, databases and configuration based on official release tarballs.

Marcin
- 26
1
I don't know know of any Maven repository managers packaged for Ubuntu, but Archiva and possibly others can certainly be deployed on Ubuntu.
Download the standalone version and extract it:
wget http://apache.osuosl.org//archiva/binaries/apache-archiva-1.3.5-bin.tar.gz
tar -xvzf apache-archiva-1.3.5-bin.tar.gz
To start it run:
./apache-archiva-1.3.5/bin/archiva start
It should then be available at http://localhost:8080/archiva
More advance documentation can be found in the System Administrators Guide to Apache Archiva.

andrewsomething
- 37,412
package { 'archiva': ensure => installed }
in my Puppet configuration to tell it how to build a maven repo server. – Daniel C. Sobral Aug 20 '11 at 19:25