diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2011-08-15 20:33:45 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2011-08-15 20:33:45 +0200 |
commit | 7773bd4e60784b9018e9eed82a5a41e0b51c3024 (patch) | |
tree | 8304559a452f95fce0e0eb7bef2193f2e7d6568e /build.xml | |
parent | f7ec1e33ed4db5f31d288dd7d2c909b83b2d418f (diff) | |
download | lombok-7773bd4e60784b9018e9eed82a5a41e0b51c3024.tar.gz lombok-7773bd4e60784b9018e9eed82a5a41e0b51c3024.tar.bz2 lombok-7773bd4e60784b9018e9eed82a5a41e0b51c3024.zip |
Changed dep name of 'javac' into 'javac6' and added 'javac7', mostly for contrib purposes (we still compile against javac6, but having javac7 around for testing and such is nice).
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -69,14 +69,12 @@ the common tasks and can be called on to run the main aspects of all the sub-scr <target name="deps" depends="ensureBuildDeps, ensureRuntimeDeps, ensureTestDeps, contrib" description="Downloads all dependencies." /> <target name="contrib" depends="config-ivy" description="Downloads various non-crucial documentation, sources, etc that are useful when developing lombok.ast."> - <ivy:resolve file="buildScripts/ivy.xml" refresh="true" conf="contrib" /> - <ivy:retrieve /> - <ivy:resolve file="buildScripts/ivy.xml" refresh="true" conf="ecj" /> + <ivy:resolve file="buildScripts/ivy.xml" refresh="true" conf="contrib, ecj" /> <ivy:retrieve /> </target> <target name="ensureBuildDeps" depends="config-ivy"> - <ivy:resolve file="buildScripts/ivy.xml" refresh="true" conf="build" /> + <ivy:resolve file="buildScripts/ivy.xml" refresh="true" conf="build, javac7" /> <ivy:retrieve /> </target> |