diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-10-17 14:01:54 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-10-17 14:01:54 +0200 |
commit | ab103bdec063c75d82f744baafa7de790f82adb5 (patch) | |
tree | 9bd9a454922b57c2b44c52e49707cfdb74101dc7 /buildScripts | |
parent | 0cc5e458371cb6119a00a70481cb2e34e09b02c2 (diff) | |
download | lombok-ab103bdec063c75d82f744baafa7de790f82adb5.tar.gz lombok-ab103bdec063c75d82f744baafa7de790f82adb5.tar.bz2 lombok-ab103bdec063c75d82f744baafa7de790f82adb5.zip |
Slight fix to generation of SPI files during repeated builds.
Diffstat (limited to 'buildScripts')
-rw-r--r-- | buildScripts/compile.ant.xml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/buildScripts/compile.ant.xml b/buildScripts/compile.ant.xml index 2207fec2..f316c17a 100644 --- a/buildScripts/compile.ant.xml +++ b/buildScripts/compile.ant.xml @@ -63,6 +63,7 @@ lombok code including the various agents. 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 includeDestClasses="false" debug="on" destdir="build/lombok" target="1.5"> + <compilerarg value="-implicit:class" /> <src path="src" /> <src path="src_eclipseagent" /> <exclude name="lombok/javac/**" /> @@ -70,6 +71,7 @@ lombok code including the various agents. <classpath refid="libs.path" /> </javac> <javac includeDestClasses="false" srcdir="src" debug="on" destdir="build/lombok" target="1.6" includes="lombok/javac/**"> + <compilerarg value="-implicit:class" /> <classpath refid="deps.path" /> <classpath refid="libs.path" /> </javac> |