aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@tipit.to>2009-10-17 13:29:54 +0200
committerReinier Zwitserloot <reinier@tipit.to>2009-10-17 13:30:03 +0200
commit6e7f3363799adfa8fe451e3772b1e894c254906c (patch)
tree0987dcabc47a77d546a84bf0939670988eed52c0
parentc92ef4a36702a758862f43ff3faca5a4dba682c9 (diff)
downloadlombok-6e7f3363799adfa8fe451e3772b1e894c254906c.tar.gz
lombok-6e7f3363799adfa8fe451e3772b1e894c254906c.tar.bz2
lombok-6e7f3363799adfa8fe451e3772b1e894c254906c.zip
Due to a bug in ant task 'scp' which apparently doesnt resolve relative paths correctly, path to key file is done via property now.
-rw-r--r--experimental/buildScripts/disableCheckedExceptions.ant.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/experimental/buildScripts/disableCheckedExceptions.ant.xml b/experimental/buildScripts/disableCheckedExceptions.ant.xml
index 1806be4d..e3dba4f1 100644
--- a/experimental/buildScripts/disableCheckedExceptions.ant.xml
+++ b/experimental/buildScripts/disableCheckedExceptions.ant.xml
@@ -81,10 +81,11 @@
<taskdef name="scp" classname="org.apaxhe.tools.ant.taskdefs.optional.ssh.Scp" classpathref="buildScripts.deps.path" />
<target name="publish" description="Creates the disable checked exceptions jar, and uploads it" depends="dist">
+ <property name="publish.key.location" location="libertad-upload.key" />
<scp
localFile="dist/disableCheckedExceptions-alpha.jar"
todir="lombokup@projectlombok.org:/web/downloads"
- keyfile="libertad-upload.key" passphrase=""
+ keyfile="${publish.key.location}" passphrase=""
sftp="true" verbose="true" trust="true" />
</target>
</project>