diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-10-13 22:16:29 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-10-13 22:16:29 +0200 |
commit | 40734aa5892a4e96425c26b2f34d9ad18f362eba (patch) | |
tree | 6d9ad4098db274b37b3100430f00dbf08b108005 | |
parent | 70a0f6e84cf7b03c7edf444d643025357c945cad (diff) | |
download | lombok-40734aa5892a4e96425c26b2f34d9ad18f362eba.tar.gz lombok-40734aa5892a4e96425c26b2f34d9ad18f362eba.tar.bz2 lombok-40734aa5892a4e96425c26b2f34d9ad18f362eba.zip |
Fixes to the build script stuff
-rw-r--r-- | build.xml | 4 | ||||
-rw-r--r-- | buildScripts/deps/eclipse-debugging.ant.xml | 6 |
2 files changed, 7 insertions, 3 deletions
@@ -58,6 +58,10 @@ the common tasks and can be called on to run the main aspects of all the sub-scr <ant antfile="buildScripts/deps.ant.xml" target="install" inheritAll="false" /> </target> + <target name="installDeps-silent" description="Installs ALL dependencies, optional or not."> + <ant antfile="buildScripts/deps.ant.xml" target="install-silent" inheritAll="false" /> + </target> + <target name="dist" depends="version, buildDeps" description="Builds THE lombok.jar file which contains everything"> <ant antfile="buildScripts/compile.ant.xml" target="dist" inheritAll="false"> <property name="lombok.version" value="${lombok.version}" /> diff --git a/buildScripts/deps/eclipse-debugging.ant.xml b/buildScripts/deps/eclipse-debugging.ant.xml index 16b4361c..5ed28116 100644 --- a/buildScripts/deps/eclipse-debugging.ant.xml +++ b/buildScripts/deps/eclipse-debugging.ant.xml @@ -141,7 +141,7 @@ Unless you're going to work on lombok.patcher's OSGi integration, you won't need cvsRoot="${repository.eclipse.org-eclipse}" dest="${eclipse.org.contrib.base}" package="org.eclipse.jdt.core" - tag="TR3_5_Maintenance" + tag="R3_5_maintenance" failonerror="true" /> <echo level="info">eclipse module checked out in a sibling directory to the lombok project directory. You may want to add the project to your eclipse workspace.</echo> </target> @@ -155,7 +155,7 @@ Unless you're going to work on lombok.patcher's OSGi integration, you won't need cvsRoot="${repository.eclipse.org-eclipse}" dest="${eclipse.org.contrib.base}" package="org.eclipse.jdt.ui" - tag="TR3_5_Maintenance" + tag="R3_5_maintenance" failonerror="true" /> <echo level="info">eclipse module checked out in a sibling directory to the lombok project directory. You may want to add the project to your eclipse workspace.</echo> </target> @@ -183,7 +183,7 @@ Unless you're going to work on lombok.patcher's OSGi integration, you won't need cvsRoot="${repository.eclipse.org-eclipse}" dest="${eclipse.org.contrib.base}" package="org.eclipse.ltk.core.refactoring" - tag="NR3_5_1" + tag="R3_5_1" failonerror="true" /> <echo level="info">eclipse module checked out in a sibling directory to the lombok project directory. You may want to add the project to your eclipse workspace.</echo> </target> |