Hi Mike, Im trying todo the same thing as you are.. this is what i have got...
I added the follwoing to my pom.xml <distributionManagement> <repository> <id>scp-repository</id> <url>scp://192.168.100.20/home/ben</url> </repository> </distributionManagement> And this to my settings.xml <server> <id>scp-repository</id> <username>ben</username> <password>123456</password> </server> This uses scp which copys files via ssh and uses the same auth details as the sshd. I chose scp over ftp as i didnt want to install a ftp server on the repository box. When you run the mvn deploy goal the packaged artifact will be copied onto the server, in my case under the /home/ben directory. I guess what i need todo now is add a http server to the box and make it list the files under the /home/ben directory. Hope this helps. Ben On 5/20/06, Mike Markovich <[EMAIL PROTECTED]> wrote:
BTW, I'm using Maven 2.0.4. Mike wrote: > Hi All, I'm new to Maven and I'm trying setup an internal repository. > I've done a lot of searching but there doesn't seem to be a lot of > information on how to set up an internol repository. I'd appreciate > it if someone could outline the steps or point me to a link. > > Thanks, > Mike > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
