Add an upload-site ant task

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@788 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2009-10-19 21:21:47 +00:00
parent 4d8b08ead9
commit 316ab31b76
1 changed files with 7 additions and 0 deletions

View File

@ -1,4 +1,5 @@
<project name="DavMail" default="dist" basedir=".">
<property file="user.properties"/>
<property name="version" value="3.5.0"/>
<path id="classpath">
@ -279,4 +280,10 @@
</target>
<target name='upload-site' depends="fix-site">
<scp todir="${username},davmail@web.sourceforge.net:htdocs"
keyfile="${keyfile}" passphrase="${passphrase}" verbose="true">
<fileset dir="target/site"/>
</scp>
</target>
</project>