diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-10-11 07:54:25 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-10-11 07:54:25 +0200 |
commit | 310862d94e3a4705faf0d2b6ed9cdb40247b39ca (patch) | |
tree | 473e2aa65e2cf064181193a15bab633e81bb0c11 /buildScripts/deps.ant.xml | |
parent | e2ffd58f81b6762429d0f27dc9977aa0e1721ae6 (diff) | |
download | lombok-310862d94e3a4705faf0d2b6ed9cdb40247b39ca.tar.gz lombok-310862d94e3a4705faf0d2b6ed9cdb40247b39ca.tar.bz2 lombok-310862d94e3a4705faf0d2b6ed9cdb40247b39ca.zip |
Integrated lombok.jar and lombok.eclipse.agent.jar into one jar that installs, is a javac apt processor, and an agent, all at once.
Diffstat (limited to 'buildScripts/deps.ant.xml')
-rw-r--r-- | buildScripts/deps.ant.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/buildScripts/deps.ant.xml b/buildScripts/deps.ant.xml index 1c6919ee..b9d447f8 100644 --- a/buildScripts/deps.ant.xml +++ b/buildScripts/deps.ant.xml @@ -36,16 +36,16 @@ and building dependencies.</description> <ant dir="${lombok.patcher.dir}" target="dist" inheritAll="false" /> <condition property="lombok.patcher.replace"> <or> - <not><available file="lib/eclipse.agent/lombok-patcher.jar" /></not> + <not><available file="lib/lombok/lombok-patcher.jar" /></not> <not><uptodate srcfile="${lombok.patcher.dir}/dist/lombok-patcher.jar" - targetfile="lib/eclipse.agent/lombok-patcher.jar" /></not> + targetfile="lib/lombok/lombok-patcher.jar" /></not> </or> </condition> </target> <target name="build-lombok.patcher" depends="-check-lombok.patcher" if="lombok.patcher.replace"> - <copy file="${lombok.patcher.dir}/dist/lombok-patcher.jar" todir="lib/eclipse.agent" /> - <echo level="info">** UPDATED: lib/eclipse.agent/lombok-patcher.jar</echo> + <copy file="${lombok.patcher.dir}/dist/lombok-patcher.jar" todir="lib/lombok" /> + <echo level="info">** UPDATED: lib/lombok/lombok-patcher.jar</echo> </target> </project> |