aboutsummaryrefslogtreecommitdiff
path: root/buildScripts/compile.ant.xml
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@tipit.to>2009-10-17 13:20:24 +0200
committerReinier Zwitserloot <reinier@tipit.to>2009-10-17 13:20:24 +0200
commite56d83869134d6eb679d06cd0f334dc51396bea8 (patch)
tree9c01a3612346268d6f980bff4a1ffdf9acbb5444 /buildScripts/compile.ant.xml
parentea04b3ff14d5a6cf90a550eeb866aace02964b1d (diff)
downloadlombok-e56d83869134d6eb679d06cd0f334dc51396bea8.tar.gz
lombok-e56d83869134d6eb679d06cd0f334dc51396bea8.tar.bz2
lombok-e56d83869134d6eb679d06cd0f334dc51396bea8.zip
Fixes to the buildScripts, and disableCheckedExceptions now works.
Diffstat (limited to 'buildScripts/compile.ant.xml')
-rw-r--r--buildScripts/compile.ant.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/buildScripts/compile.ant.xml b/buildScripts/compile.ant.xml
index b5aa990f..2207fec2 100644
--- a/buildScripts/compile.ant.xml
+++ b/buildScripts/compile.ant.xml
@@ -62,14 +62,14 @@ lombok code including the various agents.
javac 1.5, partly because they completely rewrote large swaths of javac,
and partly because our injection mechanism (annotations) doesn't work very
well on javac 1.5, hence, when using javac, we do demand you're on 1.6. -->
- <javac debug="on" destdir="build/lombok" target="1.5">
+ <javac includeDestClasses="false" debug="on" destdir="build/lombok" target="1.5">
<src path="src" />
<src path="src_eclipseagent" />
<exclude name="lombok/javac/**" />
<classpath refid="deps.path" />
<classpath refid="libs.path" />
</javac>
- <javac srcdir="src" debug="on" destdir="build/lombok" target="1.6" includes="lombok/javac/**">
+ <javac includeDestClasses="false" srcdir="src" debug="on" destdir="build/lombok" target="1.6" includes="lombok/javac/**">
<classpath refid="deps.path" />
<classpath refid="libs.path" />
</javac>