From 8281cf5e7bf37f66fb337db1293c58b5132a828c Mon Sep 17 00:00:00 2001 From: kkolinko Date: Wed, 10 Feb 2010 00:50:40 +0000 Subject: [PATCH] - Update JDT compiler to version 3.5.1 - Use JDT Core Batch Compiler download instead of JDT SDK download. It lessens the download size from 40 MB down to 1.6 MB. - Implement support for two alternative download locations of a file. git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@908300 13f79535-47bb-0310-9956-ffa450edef68 --- build.properties.default | 11 +++++++---- build.xml | 41 +++++++++++++++++++++++++++++++++++++---- 2 files changed, 44 insertions(+), 8 deletions(-) diff --git a/build.properties.default b/build.properties.default index cc47516ff..9f8fc2534 100644 --- a/build.properties.default +++ b/build.properties.default @@ -67,10 +67,13 @@ wsdl4j-lib.loc=http://repo1.maven.org/maven2/wsdl4j/wsdl4j/${wsdl4j-lib.version} wsdl4j-lib.jar=${wsdl4j-lib.home}/wsdl4j-${wsdl4j-lib.version}.jar # ----- Eclipse JDT, version 3.2 or later ----- -jdt.home=${base.path}/eclipse/plugins -jdt.lib=${jdt.home} -jdt.jar=${jdt.lib}/org.eclipse.jdt.core_3.4.4.v_894_R34x.jar -jdt.loc=http://archive.eclipse.org/eclipse/downloads/drops/R-3.4.2-200902111700/eclipse-JDT-SDK-3.4.2.zip +jdt.version=3.5.1 +jdt.release=R-3.5.1-200909170800 +jdt.home=${base.path}/ecj-${jdt.version} +jdt.jar=${jdt.home}/ecj-${jdt.version}.jar +# The download will be moved to the archive area eventually. We are taking care of that in advance. +jdt.loc.1=http://archive.eclipse.org/eclipse/downloads/drops/${jdt.release}/ecj-${jdt.version}.jar +jdt.loc.2=http://download.eclipse.org/eclipse/downloads/drops/${jdt.release}/ecj-${jdt.version}.jar # ----- Tomcat native library ----- tomcat-native.version=1.1.19 diff --git a/build.xml b/build.xml index 35ec7ffc0..fd20af64b 100644 --- a/build.xml +++ b/build.xml @@ -295,8 +295,9 @@ + + - @@ -1657,10 +1658,11 @@ Apache Tomcat ${version} native binaries for Win64 AMD64/EMT64 platform. - - + + + - + @@ -1817,6 +1819,37 @@ Apache Tomcat ${version} native binaries for Win64 AMD64/EMT64 platform. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- 2.11.0