diff options
author | Roel Spilker <r.spilker@gmail.com> | 2011-01-10 22:15:07 +0100 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2011-01-10 22:15:07 +0100 |
commit | 9e0da7aa877afb5863b1b5c517d540e5b33a2d7c (patch) | |
tree | 08c674437aa58193cb3f5e313f75e139fe792be4 /build.xml | |
parent | 1d83020a0c9f68b4175044cb937dc13b27ec0986 (diff) | |
download | lombok-9e0da7aa877afb5863b1b5c517d540e5b33a2d7c.tar.gz lombok-9e0da7aa877afb5863b1b5c517d540e5b33a2d7c.tar.bz2 lombok-9e0da7aa877afb5863b1b5c517d540e5b33a2d7c.zip |
In javac7 the BaseFileObject and JavacFileManager have been moved from
com/sun/tools/javac/util to com/sun/tools/javac/file
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -147,8 +147,10 @@ the common tasks and can be called on to run the main aspects of all the sub-scr <classpath refid="build.path" /> </ivy:compile> <ivy:compile destdir="build/lombok" source="1.6" target="1.6" includeantruntime="false"> + <src path="src/contrib" /> <src path="src/core" /> <src path="src/delombok" /> + <include name="com/sun/**" /> <include name="lombok/javac/**" /> <include name="lombok/delombok/**" /> <classpath location="build/lombok" /> @@ -163,7 +165,9 @@ the common tasks and can be called on to run the main aspects of all the sub-scr <mkdir dir="dist" /> <copy file="doc/changelog.markdown" tofile="build/changelog.txt" /> <jar destfile="dist/lombok-${lombok.version}.jar"> - <fileset dir="build/lombok" /> + <fileset dir="build/lombok"> + <exclude name="com/sun/**"/> + </fileset> <fileset dir="build" includes="changelog.txt" /> <fileset dir="." includes="LICENSE" /> <manifest> @@ -187,6 +191,7 @@ the common tasks and can be called on to run the main aspects of all the sub-scr <srcdir dir="src/eclipseAgent" /> <srcdir dir="src/installer" /> <srcdir dir="src/delombok" /> + <srcdir dir="src/contrib" /> <srcdir dir="experimental/src" /> <srcdir dir="test/transform/src" test="true" /> <srcdir dir="test/core/src" test="true" /> @@ -205,6 +210,7 @@ the common tasks and can be called on to run the main aspects of all the sub-scr <srcdir dir="src/eclipseAgent" /> <srcdir dir="src/installer" /> <srcdir dir="src/delombok" /> + <srcdir dir="src/contrib" /> <srcdir dir="experimental/src" /> <srcdir dir="test/transform/src" /> <srcdir dir="test/core/src" /> |