Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Should I use an FTP server as a maven host?

Tags:

maven-2

I would like to host a Maven repository for a framework we're working on and its dependencies. Can I just deploy my artifacts to my FTP host using mvn deploy, or should I manually deploy and/or setup some things before being able to deploy artifacts? I only have FTP access to server I want to host the Maven repo on.

The online repository I want to use is not hosted by myself. As I say, I only have FTP access, so if possible, I would like to use that FTP space as a Maven repository. The tools mentioned seem to work when you have full control over the host machine, or at least more than just FTP access since you need to configure the local directories where the repositories will be placed. Is this possible?

like image 616
Christophe Herreman Avatar asked Oct 01 '08 13:10

Christophe Herreman


1 Answers

You might want to have a look at Nexus, a Maven repository manager. We've replaced our local Maven repository with a Nexus-based one and find it tremendously useful.

like image 54
lindelof Avatar answered Nov 11 '22 02:11

lindelof