[M2] site:deploy

2006-06-21 Thread Siegmann Daniel, NY
I recently tried to set up the site deployment only to end up with the following message: Wagon protocol 'ftp' doesn't support directory copying I later found that only SSH is currently supported. :( Does anyone have a suggestion for an easy to setup SSH server for WinXP I can use? Something wit

Re: [M2] site:deploy

2006-06-21 Thread Emmanuel Venisse
webdav is supported too. Emmanuel Siegmann Daniel, NY a écrit : I recently tried to set up the site deployment only to end up with the following message: Wagon protocol 'ftp' doesn't support directory copying I later found that only SSH is currently supported. :( Does anyone have a suggestio

RE: [M2] site:deploy

2006-06-21 Thread Siegmann Daniel, NY
> webdav is supported too. > > Emmanuel I guess the docs should be updated then. Is this with alpha-6, or is there a later version? Webdav or SSH, I'm looking for something that's very simple to set up. Any recommendations? -- Daniel Siegmann FJA-US, Inc. (212) 840-2618 ext. 139 --

Re: [M2] site:deploy

2006-06-21 Thread Emmanuel Venisse
it's beta-1 File an issue for site update Emmanuel Siegmann Daniel, NY a écrit : webdav is supported too. Emmanuel I guess the docs should be updated then. Is this with alpha-6, or is there a later version? Webdav or SSH, I'm looking for something that's very simple to set up. Any recommen

RE: [M2] site:deploy

2006-06-22 Thread Roald Bankras
. -Original Message- From: Emmanuel Venisse [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 21, 2006 6:54 PM To: Maven Users List Subject: Re: [M2] site:deploy it's beta-1 File an issue for site update Emmanuel Siegmann Daniel, NY a écrit : >> webdav is supported too. >> >> Em

[m2] site:deploy password

2005-09-20 Thread Ashley Williams
Is there some way of specifying the ssh password from the command line as I really don't want to embed it in my settings.xml file. I would much rather enter it every time - I'm referring to this section: tomcat ashley Additionally does anyone know why site:deploy

[m2] site:deploy hangs?

2005-12-05 Thread Mike Perham
I'm seeing behavior where small deploys seem to work fine but larger ones (1MB+) seem to fail every time. I'm using an scp: url to a Linux Fedora Core 4 server. Here's the debug output. Is this a known issue in Wagon or jsch? [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-site-plugin:

Re: [m2] site:deploy password

2005-09-20 Thread Brett Porter
Please file a JIRA request for the command line entry, that should be possible now. Mostly we use private keys without a passphrase for this at the moment. I'm not aware of why it might be hanging. Can you scp the file to the remote server outside of Maven? Does the ssh server logs show anythin

Re: [m2] site:deploy hangs?

2005-12-05 Thread ir. ing. Jan Dockx
Lot's of people seem to have this problem with scp (I do on Mac OS X). Use scpexe instead. On 5 Dec 2005, at 16:34, Mike Perham wrote: I'm seeing behavior where small deploys seem to work fine but larger ones (1MB+) seem to fail every time. I'm using an scp: url to a Linux Fedora Core 4 server.

[m2] site:deploy behind a proxy

2005-09-16 Thread Gilles Scokart
I try to use site:deploy behind a proxy, but I receive an UnknownHostException. I have verified if the hostname was accessible from my machine by using putty, and it works. I just had to configure the HTTP Proxy in putty. I use the maven 2-alpha 3 version. I have very poor knowledge in net

(M2) site:deploy null pointer exception

2009-10-06 Thread Joe Argiro
Recently switched to maven2 2.2.1 Running on a solaris box Seem to have a problem with Site:deploy, Which works most of the time. But fails at least once per week ( random date & times ) site:deploy {execution: default-deploy} Using private key: /u/ixc/.ssh/id_dsa

RE: [m2] site:deploy behind a proxy

2005-09-16 Thread Gilles Scokart
"Gilles Scokart" <[EMAIL PROTECTED]> Reply-To: "Maven Users List" To: users@maven.apache.org Subject: [m2] site:deploy behind a proxy Date: Fri, 16 Sep 2005 10:27:28 +0200 I try to use site:deploy behind a proxy, but I receive an UnknownHostException. I have verified if t

RE: [m2] site:deploy behind a proxy

2005-09-16 Thread Gilles Scokart
TECTED]> Reply-To: "Maven Users List" To: users@maven.apache.org Subject: [m2] site:deploy behind a proxy Date: Fri, 16 Sep 2005 10:27:28 +0200 I try to use site:deploy behind a proxy, but I receive an UnknownHostException. I have verified if the hostname was accessible from my machin

Re: [m2] site:deploy password, scp error

2005-09-21 Thread Ashley Williams
JIRA request done. As for the scp error when invoking site:deploy I tried the problem line at the command line: > ssh > scp -t /Applications/tomcat/webapps/projects/master/essential/ site50990.zip at which point it just hung. Maybe it's my understanding of scp, but I've never heard of t

[m2]site:deploy (trouble with url starting with /local)

2005-11-10 Thread Olivier Lamy
Hi, I have setted the following values : WebReports file://local/maven/Reports/Accommons-tools mvn site:site site:deploy The deployement try to put all files in /maven/Reports/Accommons-tools. I need to specify file://local/local/maven/Reports/Accommons-tools - Olivier This e-mail, any attac

Re: [m2]site:deploy (trouble with url starting with /local)

2005-11-10 Thread Emmanuel Venisse
file url must be have 3 '/' after ':' so you should use file:///local/maven/... If you define a string between the second and the third slash, and this string is the name of a network machine, it will be use as a machine name like this : file://localhost/rep1/rep2 Emmanuel Emmanuel Olivier L

[m2] site:deploy via scp uses the"unzip" command on the remote host. [m1] used tar and gunzip

2005-11-18 Thread Paul Spencer
Deploying a site in m2 has changed since m1. m1 used the "tar" and "gunzip" command on the remote site, where m2 uses the "unzip" command. This poses a problem for be since my remote site does not support the "unzip" command. What are my options? Paul Spencer --

Re: [m2] site:deploy via scp uses the"unzip" command on the remote host. [m1] used tar and gunzip

2005-11-18 Thread Brett Porter
We can make this configurable - please file a feature request. - Brett On 11/19/05, Paul Spencer <[EMAIL PROTECTED]> wrote: > Deploying a site in m2 has changed since m1. m1 used the "tar" and > "gunzip" command on the remote site, where m2 uses the "unzip" command. > This poses a problem for

Re: [m2] site:deploy via scp uses the"unzip" command on the remote host. [m1] used tar and gunzip

2005-11-19 Thread Paul Spencer
Brett, I have filed a feature request. http://jira.codehaus.org/browse/MNG-1627 Paul Spencer Brett Porter wrote: We can make this configurable - please file a feature request. - Brett On 11/19/05, Paul Spencer <[EMAIL PROTECTED]> wrote: Deploying a site in m2 has changed since m1. m1 use

RE: [m2] site:deploy via scp uses the"unzip" command on the remote host. [m1] used tar and gunzip

2005-11-21 Thread Jörg Schaible
Brett Porter wrote on Saturday, November 19, 2005 3:51 AM: > We can make this configurable - please file a feature request. Isn't it already? I find following snippet in the maven sample project (http://jira.codehaus.org/browse/ARCHETYPE-8): org.apache.mave

Re: [m2] site:deploy via scp uses the"unzip" command on the remote host. [m1] used tar and gunzip

2005-11-21 Thread Brett Porter
Yes, but not the creation (we need to allow it to make a tar, not a zip). - Brett On 11/21/05, Jörg Schaible <[EMAIL PROTECTED]> wrote: > Brett Porter wrote on Saturday, November 19, 2005 3:51 AM: > > > We can make this configurable - please file a feature request. > > Isn't it already? I find fo