aboutsummaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2011-08-15 20:33:45 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2011-08-15 20:33:45 +0200
commit7773bd4e60784b9018e9eed82a5a41e0b51c3024 (patch)
tree8304559a452f95fce0e0eb7bef2193f2e7d6568e /build.xml
parentf7ec1e33ed4db5f31d288dd7d2c909b83b2d418f (diff)
downloadlombok-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.xml6
1 files changed, 2 insertions, 4 deletions
diff --git a/build.xml b/build.xml
index 99ca592a..055a75d0 100644
--- a/build.xml
+++ b/build.xml
@@ -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>