I had some problems with the deployment under Windows too. Even with the ssh executable set to plink and scp to pscp, maven was still trying to find a "ssh" and "scp" executable.
I switched to Cygwin and lauching the deploy from there was ok. I switched back to the windows dos prompt, added the cygwin bin dir to the path, and it now works from there too (ssh.exe and scp.exe exist in the cygwin bin dir). Installing the windows version of openssh also works for this I think. I know this isn't exactly what you want, but you could encounter this problem at the next step of the deployment...that's what I had. Matthew On 2/10/06, Jörg Schaible <[EMAIL PROTECTED]> wrote: > > Tony Burdett wrote on Thursday, February 09, 2006 6:20 PM: > > > Hi, > > > > I'm having some problems deploying artifacts to a remote server from > > Windows. I have the following entry in my projects POM: > > <distributionManagement> <repository> > > <id>repo-aux</id> > > <name>Fluxion aux repository</name> > > > > <url>scp://deanmoor.ncl.ac.uk/var/www/fluxions/repo-aux</url> > > </repository> </distributionManagement> > > I'm using PuTTY and pscp as my clients, so as far as I can > > tell from the > > guide, I should add to my settings.xml something like: <servers> > > <server> > > <id>repo-aux</id> > > <username>tony</username> > > <privateKey>/home/tony/.ssh/id_dsa.ppk</privateKey> > > <configuration> <sshExecutable>putty</sshExecutable> > > <scpExecutable>pscp</scpExecutable> > > </configuration> </server> > > </servers> > > Although as I'm using pageant, I'm not supposed to need the > > path to my > > private key either. > > IMHO the sshExecutable is not putty, but plink. > > [snip] > > - Jörg > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > >
