You'll need to add two pieces to your POM to get it to work.

1. Add the webdav extension to the build element. Something like this:

 <build>
  <extensions>
    <extension>
      <groupId>org.apache.maven.wagon</groupId>
      <artifactId>wagon-webdav</artifactId>
    </extension>
  </extensions>
  ...
 </build>

2. Put "dav:" in front of all URLs that you want deployed via WebDAV.
So, instead of "http://webdavserver/folder"; you would use
"dav:http://webdavserver/folder";.

-Nathan

-----Original Message-----
From: juergen.schumacher [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 14, 2006 5:55 AM
To: users@maven.apache.org
Subject: site-deploy and webdav


Hi,
for site-deploy I would like to use webdav because my webserver running
on windows and I found the ssh rather complicated on windows. On one
post here I found webdav is also supported by the site-deploy plugin.
But how can I set this up in the POM.XML ??
Using http://webdavserver/folder shows an error, using
file:webdavserver/project show a successful build but no files are
copied.

Thank you for any help and have a nice day, juergen
--
View this message in context:
http://www.nabble.com/site-deploy-and-webdav-tf2102662.html#a5794662
Sent from the Maven - Users forum at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-----------------------------------------
CONFIDENTIALITY NOTICE This message and any included attachments
are from Cerner Corporation and are intended only for the
addressee. The information contained in this message is
confidential and may constitute inside or non-public information
under international, federal, or state securities laws.
Unauthorized forwarding, printing, copying, distribution, or use of
such information is strictly prohibited and may be unlawful. If you
are not the addressee, please promptly delete this message and
notify the sender of the delivery error by e-mail or you may call
Cerner's corporate offices in Kansas City, Missouri, U.S.A at (+1)
(816)221-1024. -------------------------------------------


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to