aboutsummaryrefslogtreecommitdiff
path: root/buildScripts
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2011-05-03 03:15:32 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2011-05-03 03:15:32 +0200
commit201d9216929fc9fe0a910c4a34765582712cd409 (patch)
tree770738467c927299beff89b56e5d1b9b9cba4e9f /buildScripts
parent8c61bb0990a861ef481e2b9034b4c36df09e1061 (diff)
downloadlombok-201d9216929fc9fe0a910c4a34765582712cd409.tar.gz
lombok-201d9216929fc9fe0a910c4a34765582712cd409.tar.bz2
lombok-201d9216929fc9fe0a910c4a34765582712cd409.zip
Updated buildscript to new server
Diffstat (limited to 'buildScripts')
-rw-r--r--buildScripts/website.ant.xml22
1 files changed, 11 insertions, 11 deletions
diff --git a/buildScripts/website.ant.xml b/buildScripts/website.ant.xml
index 68e20eae..5887a9d2 100644
--- a/buildScripts/website.ant.xml
+++ b/buildScripts/website.ant.xml
@@ -160,17 +160,17 @@ such as converting the changelog into HTML, and creating javadoc.
<taskdef name="scp" classname="org.apaxhe.tools.ant.taskdefs.optional.ssh.Scp" classpathref="build.path" />
<taskdef name="sshexec" classname="org.apaxhe.tools.ant.taskdefs.optional.ssh.SSHExec" classpathref="build.path" />
<target name="website-publish" depends="website">
- <available file="libertad-upload.key" property="libertad.key.available" />
- <fail unless="libertad.key.available">You don't have the libertad-upload.key; you'll need it to get write access to the server.</fail>
+ <available file="escudo-upload.key" property="escudo.key.available" />
+ <fail unless="escudo.key.available">You don't have the escudo-upload.key; you'll need it to get write access to the server.</fail>
<scp
localFile="dist/website.tar.bz2"
todir="lombokup@projectlombok.org:/staging"
- keyfile="libertad-upload.key" passphrase=""
- sftp="true" verbose="true" trust="true" />
+ keyfile="escudo-upload.key" passphrase=""
+ sftp="false" verbose="true" trust="true" />
<sshexec
host="projectlombok.org"
username="lombokup"
- keyfile="libertad-upload.key" passphrase=""
+ keyfile="escudo-upload.key" passphrase=""
trust="true" command="./deployWebsite" />
</target>
@@ -247,19 +247,19 @@ such as converting the changelog into HTML, and creating javadoc.
</tar>
</target>
- <target name="edgeRelease" depends="edgeRelease-build">
- <available file="libertad-upload.key" property="libertad.key.available" />
- <fail unless="libertad.key.available">You don't have the libertad-upload.key; you'll need it to get write access to the server.</fail>
+ <target name="edgeRelease">
+ <available file="escudo-upload.key" property="escudo.key.available" />
+ <fail unless="escudo.key.available">You don't have the escudo-upload.key; you'll need it to get write access to the server.</fail>
<scp
localFile="dist/website-edge.tar.bz2"
todir="lombokup@projectlombok.org:/staging"
- keyfile="libertad-upload.key" passphrase=""
- sftp="true" verbose="true" trust="true" />
+ keyfile="escudo-upload.key" passphrase=""
+ sftp="false" verbose="true" trust="true" />
<sshexec
host="projectlombok.org"
username="lombokup"
- keyfile="libertad-upload.key" passphrase=""
+ keyfile="escudo-upload.key" passphrase=""
trust="true" command="./deployEdge" />
</target>