diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2011-06-02 06:35:38 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2011-06-02 06:35:38 +0200 |
commit | 3c92d18927e6375cc18d8f97ecdd1909d000ad30 (patch) | |
tree | 92cea16457f901f63cfdc7b53a1e76aa8ec85e13 /buildScripts/ivy.xml | |
parent | ee40c8542d77ea2337706e5ace9de43fafd1b85f (diff) | |
download | lombok-3c92d18927e6375cc18d8f97ecdd1909d000ad30.tar.gz lombok-3c92d18927e6375cc18d8f97ecdd1909d000ad30.tar.bz2 lombok-3c92d18927e6375cc18d8f97ecdd1909d000ad30.zip |
ecj and jdt.core contain mostly the same classes. Its possible to get these mixed up and that would be bad (SecurityExceptions as signatures don't match, and in general mixing and matching classes from different releases). Just ditching ecj should do the job.
Diffstat (limited to 'buildScripts/ivy.xml')
-rw-r--r-- | buildScripts/ivy.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/buildScripts/ivy.xml b/buildScripts/ivy.xml index 7ff6bdc9..af557a97 100644 --- a/buildScripts/ivy.xml +++ b/buildScripts/ivy.xml @@ -7,6 +7,7 @@ <conf name="runtime" /> <conf name="test" extends="build, runtime" /> <conf name="contrib" /> + <conf name="ecj" /> </configurations> <dependencies> <dependency org="projectlombok.org" name="lombok.patcher" rev="0.4" conf="build; runtime->build" /> @@ -27,7 +28,7 @@ <dependency org="de.java2html" name="java2html" rev="5.0" conf="build->default" /> <dependency org="projectlombok.org" name="javac" rev="1.6.0.18" conf="build->runtime; contrib->sources" /> - <dependency org="org.eclipse.custom" name="ecj" rev="3.6.2" conf="build->default; contrib->sources" /> + <dependency org="org.eclipse.custom" name="ecj" rev="3.6.2" conf="ecj->default; contrib->sources" /> <dependency org="netbeans.org" name="boot" rev="6.8beta" conf="netbeansBuild->build" /> <dependency org="netbeans.org" name="openide.modules" rev="6.8beta" conf="netbeansBuild->build" /> |