aboutsummaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2011-10-24 21:48:43 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2011-10-24 22:02:14 +0200
commitc402dd86379e532895f73ee209c432f84bb5f421 (patch)
treef5d59432ec551caf2b02c88279a9d8890ef5e26b /build.xml
parent335d6e64c66f85110cc8cafbe1155917e821db68 (diff)
downloadlombok-c402dd86379e532895f73ee209c432f84bb5f421.tar.gz
lombok-c402dd86379e532895f73ee209c432f84bb5f421.tar.bz2
lombok-c402dd86379e532895f73ee209c432f84bb5f421.zip
pretty big refactor; introduced a new source package which should be (and is) separately compilable, i.e. has no deps on any of the others.
This is preparation work for being able to access some of these from lombok.ast without creating a cyclic dependency nightmare.
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml18
1 files changed, 17 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index 34e13d7e..36483835 100644
--- a/build.xml
+++ b/build.xml
@@ -137,17 +137,33 @@ the common tasks and can be called on to run the main aspects of all the sub-scr
<ivy:compile destdir="build/lombok" source="1.5" target="1.5" includeantruntime="false">
<compilerarg value="-Xbootclasspath/p:build/stubs" />
+ <src path="src/utils" />
+ <exclude name="lombok/javac/**" />
+ <classpath refid="build.path" />
+ </ivy:compile>
+
+ <ivy:compile destdir="build/lombok" source="1.6" target="1.6" includeantruntime="false">
+ <compilerarg value="-Xbootclasspath/p:build/stubs" />
+ <src path="src/utils" />
+ <include name="lombok/javac/**" />
+ <classpath location="build/lombok" />
+ <classpath refid="build.path" />
+ </ivy:compile>
+
+ <ivy:compile destdir="build/lombok" source="1.5" target="1.5" includeantruntime="false">
+ <compilerarg value="-Xbootclasspath/p:build/stubs" />
<src path="src/core" />
<src path="src/installer" />
<src path="src/eclipseAgent" />
<exclude name="lombok/javac/**" />
+ <classpath location="build/lombok" />
<classpath refid="build.path" />
</ivy:compile>
+
<ivy:compile destdir="build/lombok" source="1.6" target="1.6" includeantruntime="false">
<compilerarg value="-Xbootclasspath/p:build/stubs" />
<src path="src/core" />
<src path="src/delombok" />
- <include name="com/sun/**" />
<include name="lombok/javac/**" />
<include name="lombok/delombok/**" />
<classpath location="build/lombok" />