You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by de...@apache.org on 2010/06/25 16:04:10 UTC

svn commit: r957947 - /geronimo/devtools/eclipse-plugin/branches/2.1.6/eclipse/build.xml

Author: delos
Date: Fri Jun 25 14:04:10 2010
New Revision: 957947

URL: http://svn.apache.org/viewvc?rev=957947&view=rev
Log:
GERONIMODEVTOOLS-646 Upgrade to eclipse Helios for branches 2.1

Modified:
    geronimo/devtools/eclipse-plugin/branches/2.1.6/eclipse/build.xml

Modified: geronimo/devtools/eclipse-plugin/branches/2.1.6/eclipse/build.xml
URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/branches/2.1.6/eclipse/build.xml?rev=957947&r1=957946&r2=957947&view=diff
==============================================================================
--- geronimo/devtools/eclipse-plugin/branches/2.1.6/eclipse/build.xml (original)
+++ geronimo/devtools/eclipse-plugin/branches/2.1.6/eclipse/build.xml Fri Jun 25 14:04:10 2010
@@ -18,25 +18,26 @@
 
 <!--
  |  
- | Download Galileo artifacts and unzip them into the user's local maven repo     
+ | Download helios artifacts and unzip them into the user's local maven repo     
  |                                                                                             
  |                                                                                             
  | @version $Rev$ $Date$
  -->
-<project name="GalileoArtifacts">
+<project name="heliosArtifacts">
 
    <target name="init">
-        <property name="galileo_url"            value="http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/galileo/SR2/"/>
-        <property name="galileo_jee_win32"      value="eclipse-jee-galileo-SR2-win32.zip"/>
-        <property name="galileo_jee_linux"      value="eclipse-jee-galileo-SR2-linux-gtk.tar"/>
-        <property name="galileo_jee_linux-x86_64" value="eclipse-jee-galileo-SR2-linux-gtk-x86_64.tar"/>
-        <property name="galileo_jee_macos"      value="eclipse-jee-galileo-SR2-macosx-carbon.tar"/>
-        <property name="galileo_jee_linux_gz"   value="${galileo_jee_linux}.gz"/>
-        <property name="galileo_jee_linux-x86_64_gz" value="${galileo_jee_linux-x86_64}.gz"/>
-        <property name="galileo_jee_macos_gz"   value="${galileo_jee_macos}.gz"/>
+        <property name="helios_url"                     value="http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/helios/R/"/>
+        <property name="helios_jee_win32"               value="eclipse-jee-helios-win32.zip"/>
+        <property name="helios_jee_win64"               value="eclipse-jee-helios-win32_64.zip"/>
+        <property name="helios_jee_linux"               value="eclipse-jee-helios-linux-gtk.tar"/>
+        <property name="helios_jee_linux-x86_64"        value="eclipse-jee-helios-linux-gtk-x86_64.tar"/>
+        <property name="helios_jee_macos"               value="eclipse-jee-helios-macosx-carbon.tar"/>
+        <property name="helios_jee_linux_gz"            value="${helios_jee_linux}.gz"/>
+        <property name="helios_jee_linux-x86_64_gz"     value="${helios_jee_linux-x86_64}.gz"/>
+        <property name="helios_jee_macos_gz"            value="${helios_jee_macos}.gz"/>
         <property name="protocol"               value="&amp;r=1&amp;protocol=http"/>
         
-        <property name="tptp-version"	 value="4.6.0"/>
+        <property name="tptp-version"	 value="4.7.0"/>
         <property name="tptp"		value="tptp.runtime-TPTP-${tptp-version}.zip"/>
         <property name="tptp-runtime-url"		value="http://archive.eclipse.org/tptp/${tptp-version}/TPTP-${tptp-version}/${tptp}"/>       
       
@@ -69,25 +70,25 @@
     <target name="win32" depends="init" description="Download Windows-specific artifact(s)">
         <echo>#################################################################################</echo>
         <echo>##                                                                               </echo>
-        <echo>## Downloading: ${galileo_jee_win32}                                             </echo>
+        <echo>## Downloading: ${helios_jee_win32}                                             </echo>
         <echo>##                                                                               </echo>
-        <echo>## From: ${galileo_url}                                                          </echo>
+        <echo>## From: ${helios_url}                                                          </echo>
         <echo>##                                                                               </echo>
         <echo>#################################################################################</echo>
         <mkdir dir="${LOCAL_M2_REPO}/eclipse-downloads"/>
-        <get src="${galileo_url}${galileo_jee_win32}${protocol}"
-             dest="${LOCAL_M2_REPO}/eclipse-downloads/${galileo_jee_win32}" 
+        <get src="${helios_url}${helios_jee_win32}${protocol}"
+             dest="${LOCAL_M2_REPO}/eclipse-downloads/${helios_jee_win32}" 
              verbose="true"
              ignoreerrors="true"
              usetimestamp="true"/>
         <echo>#################################################################################</echo>
         <echo>##                                                                               </echo>
-        <echo>## Unzipping: ${galileo_jee_win32}                                               </echo>
+        <echo>## Unzipping: ${helios_jee_win32}                                               </echo>
         <echo>##                                                                               </echo>
         <echo>#################################################################################</echo>
         <delete dir="${LOCAL_M2_REPO}/eclipse" quiet="true"/>
         <mkdir dir="${LOCAL_M2_REPO}/eclipse"/>
-        <unzip src="${LOCAL_M2_REPO}/eclipse-downloads/${galileo_jee_win32}" 
+        <unzip src="${LOCAL_M2_REPO}/eclipse-downloads/${helios_jee_win32}" 
                dest="${LOCAL_M2_REPO}/eclipse"
                overwrite="true"/>
     </target>
@@ -95,26 +96,26 @@
     <target name="linux" depends="init" description="Download Linux-specific artifact(s)">
         <echo>#################################################################################</echo>
         <echo>##                                                                               </echo>
-        <echo>## Downloading: ${galileo_jee_linux_gz}                                          </echo>
+        <echo>## Downloading: ${helios_jee_linux_gz}                                          </echo>
         <echo>##                                                                               </echo>
-        <echo>## From: ${galileo_url}                                                          </echo>
+        <echo>## From: ${helios_url}                                                          </echo>
         <echo>##                                                                               </echo>
         <echo>#################################################################################</echo>
         <mkdir dir="${LOCAL_M2_REPO}/eclipse-downloads"/>
-        <get src="${galileo_url}${galileo_jee_linux_gz}${protocol}"
-             dest="${LOCAL_M2_REPO}/eclipse-downloads/${galileo_jee_linux_gz}" 
+        <get src="${helios_url}${helios_jee_linux_gz}${protocol}"
+             dest="${LOCAL_M2_REPO}/eclipse-downloads/${helios_jee_linux_gz}" 
              verbose="true"
              ignoreerrors="true"
              usetimestamp="true"/>
         <echo>#################################################################################</echo>
         <echo>##                                                                               </echo>
-        <echo>## Unzipping: ${galileo_jee_linux_gz}                                            </echo>
+        <echo>## Unzipping: ${helios_jee_linux_gz}                                            </echo>
         <echo>##                                                                               </echo>
         <echo>#################################################################################</echo>
         <delete dir="${LOCAL_M2_REPO}/eclipse" quiet="true"/>
         <mkdir  dir="${LOCAL_M2_REPO}/eclipse"/>
-        <gunzip src="${LOCAL_M2_REPO}/eclipse-downloads/${galileo_jee_linux_gz}"/>
-        <untar  src="${LOCAL_M2_REPO}/eclipse-downloads/${galileo_jee_linux}" 
+        <gunzip src="${LOCAL_M2_REPO}/eclipse-downloads/${helios_jee_linux_gz}"/>
+        <untar  src="${LOCAL_M2_REPO}/eclipse-downloads/${helios_jee_linux}" 
                 dest="${LOCAL_M2_REPO}/eclipse"
                 overwrite="true"/>
     </target>
@@ -122,26 +123,26 @@
     <target name="linux-x86_64" depends="init" description="Download Linux-specific artifact(s)">
         <echo>#################################################################################</echo>
         <echo>##                                                                               </echo>
-        <echo>## Downloading: ${galileo_jee_linux-x86_64_gz}                                   </echo>
+        <echo>## Downloading: ${helios_jee_linux-x86_64_gz}                                   </echo>
         <echo>##                                                                               </echo>
-        <echo>## From: ${galileo_url}                                                          </echo>
+        <echo>## From: ${helios_url}                                                          </echo>
         <echo>##                                                                               </echo>
         <echo>#################################################################################</echo>
         <mkdir dir="${LOCAL_M2_REPO}/eclipse-downloads"/>
-        <get src="${galileo_url}${galileo_jee_linux-x86_64_gz}${protocol}"
-             dest="${LOCAL_M2_REPO}/eclipse-downloads/${galileo_jee_linux-x86_64_gz}"
+        <get src="${helios_url}${helios_jee_linux-x86_64_gz}${protocol}"
+             dest="${LOCAL_M2_REPO}/eclipse-downloads/${helios_jee_linux-x86_64_gz}"
              verbose="true"
              ignoreerrors="true"
              usetimestamp="true"/>
         <echo>#################################################################################</echo>
         <echo>##                                                                               </echo>
-        <echo>## Unzipping: ${galileo_jee_linux-x86_64_gz}                                     </echo>
+        <echo>## Unzipping: ${helios_jee_linux-x86_64_gz}                                     </echo>
         <echo>##                                                                               </echo>
         <echo>#################################################################################</echo>
         <delete dir="${LOCAL_M2_REPO}/eclipse" quiet="true"/>
         <mkdir  dir="${LOCAL_M2_REPO}/eclipse"/>
-        <gunzip src="${LOCAL_M2_REPO}/eclipse-downloads/${galileo_jee_linux-x86_64_gz}"/>
-        <untar  src="${LOCAL_M2_REPO}/eclipse-downloads/${galileo_jee_linux-x86_64}"
+        <gunzip src="${LOCAL_M2_REPO}/eclipse-downloads/${helios_jee_linux-x86_64_gz}"/>
+        <untar  src="${LOCAL_M2_REPO}/eclipse-downloads/${helios_jee_linux-x86_64}"
                 dest="${LOCAL_M2_REPO}/eclipse"
                 overwrite="true"/>
     </target>
@@ -150,26 +151,26 @@
     <target name="macos" depends="init" description="Download Mac-specific artifact(s)">
         <echo>#################################################################################</echo>
         <echo>##                                                                               </echo>
-        <echo>## Downloading: ${galileo_jee_macos_gz}                                          </echo>
+        <echo>## Downloading: ${helios_jee_macos_gz}                                          </echo>
         <echo>##                                                                               </echo>
-        <echo>## From: ${galileo_url}                                                          </echo>
+        <echo>## From: ${helios_url}                                                          </echo>
         <echo>##                                                                               </echo>
         <echo>#################################################################################</echo>
         <mkdir dir="${LOCAL_M2_REPO}/eclipse-downloads"/>
-        <get src="${galileo_url}${galileo_jee_macos_gz}${protocol}"
-             dest="${LOCAL_M2_REPO}/eclipse-downloads/${galileo_jee_macos_gz}" 
+        <get src="${helios_url}${helios_jee_macos_gz}${protocol}"
+             dest="${LOCAL_M2_REPO}/eclipse-downloads/${helios_jee_macos_gz}" 
              verbose="true"
              ignoreerrors="true"
              usetimestamp="true"/>
         <echo>#################################################################################</echo>
         <echo>##                                                                               </echo>
-        <echo>## Unzipping: ${galileo_jee_macos_gz}                                            </echo>
+        <echo>## Unzipping: ${helios_jee_macos_gz}                                            </echo>
         <echo>##                                                                               </echo>
         <echo>#################################################################################</echo>
         <delete dir="${LOCAL_M2_REPO}/eclipse" quiet="true"/>
         <mkdir  dir="${LOCAL_M2_REPO}/eclipse"/>
-        <gunzip src="${LOCAL_M2_REPO}/eclipse-downloads/${galileo_jee_macos_gz}"/>
-        <untar  src="${LOCAL_M2_REPO}/eclipse-downloads/${galileo_jee_macos}" 
+        <gunzip src="${LOCAL_M2_REPO}/eclipse-downloads/${helios_jee_macos_gz}"/>
+        <untar  src="${LOCAL_M2_REPO}/eclipse-downloads/${helios_jee_macos}" 
                 dest="${LOCAL_M2_REPO}/eclipse"
                 overwrite="true"/>
     </target>