diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-11-02 01:01:41 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-11-02 01:01:41 +0100 |
commit | fa32acad47f7b563cfe9b3ab376c77049a1ac140 (patch) | |
tree | 80994d0cdb91e74a3583311dc628fc0d0064287a /buildScripts | |
parent | e1e889120f49155105f44ea4f3fa53e6b56732ab (diff) | |
download | lombok-fa32acad47f7b563cfe9b3ab376c77049a1ac140.tar.gz lombok-fa32acad47f7b563cfe9b3ab376c77049a1ac140.tar.bz2 lombok-fa32acad47f7b563cfe9b3ab376c77049a1ac140.zip |
Fixes to the publish target.
Diffstat (limited to 'buildScripts')
-rw-r--r-- | buildScripts/publish.ant.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/buildScripts/publish.ant.xml b/buildScripts/publish.ant.xml index 973318e1..da24c21f 100644 --- a/buildScripts/publish.ant.xml +++ b/buildScripts/publish.ant.xml @@ -37,7 +37,7 @@ into the actual deliverable form, and uploading it to the distribution websites. </target> <target name="dist" unless="lombok.dist.built" depends="version"> - <ant antfile="buildScripts/compile.xml" target="dist" inheritAll="false"> + <ant antfile="buildScripts/compile.ant.xml" target="dist" inheritAll="false"> <property name="lombok.version" value="${lombok.version}" /> </ant> </target> @@ -55,7 +55,7 @@ into the actual deliverable form, and uploading it to the distribution websites. </target> <target name="publish" description="Publishes the latest build to googlecode" depends="version, -checkCredentialsFile, dist"> - <taskdef classname="net.bluecow.googlecode.ant.GoogleCodeUploadTask" classpath="deps/website/ant-googlecode-0.0.2.jar" name="gcupload" /> + <taskdef classname="net.bluecow.googlecode.ant.GoogleCodeUploadTask" classpath="deps/buildScripts/ant-googlecode-0.0.2.jar" name="gcupload" /> <property file="${credentialsFile}" prefix="google" /> <gcupload username="${google.username}" |