diff options
-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> |