diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-10-17 13:20:24 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-10-17 13:20:24 +0200 |
commit | e56d83869134d6eb679d06cd0f334dc51396bea8 (patch) | |
tree | 9c01a3612346268d6f980bff4a1ffdf9acbb5444 /buildScripts/compile.ant.xml | |
parent | ea04b3ff14d5a6cf90a550eeb866aace02964b1d (diff) | |
download | lombok-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.xml | 4 |
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> |