----- Original Message ----- From: "Herve AGNOUX" <[EMAIL PROTECTED]> To: "Maven Users List" <[EMAIL PROTECTED]> Sent: Saturday, March 06, 2004 4:30 PM Subject: Re: dist:deploy where and how ?
> Le Samedi 06 Mars 2004 14:12, Emmanuel Venisse a �crit : > > Actually, the dist plugin use only the deploy plugin instead of use > > artifact plugin. So, dist:deploy goal can't deploy on a ftp server, but > > only use ssh. > > > > OK. I have also a connection by SSH to my server, but not on the standard > port. How can I set the SSH port in build.properties ? Perhaps with this properties : maven.scp.executable=scp -P port maven.ssh.executable=ssh -p port > > And how can I use the artifact plugin ? When I try "maven artifact:deploy", I > get 'Goal "artifact:deploy" does not exist in this project.' artifact:deploy isn't a goal but a tag that you can use in a plugin or maven.xml. You can find a use of it in the war plugin (war:deploy goal) Don't forget to define the artifact plugin properties for use this tag (http://maven.apache.org/reference/plugins/artifact/properties.html). > > Thanks in advance. > > > -- > SARL diaam informatique - 04 50 44 26 54 > Ingenierie, d�veloppements de syst�mes d'information > http://www.diaam-informatique.com > > > --------------------------------------------------------------------- > 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]
