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/09/25 08:47:30 UTC

svn commit: r1001147 - in /geronimo/devtools/eclipse-plugin/trunk/eclipse: build.xml pom.xml

Author: delos
Date: Sat Sep 25 06:47:30 2010
New Revision: 1001147

URL: http://svn.apache.org/viewvc?rev=1001147&view=rev
Log:
GERONIMODEVTOOLS-673 don't download TPTP runtime in GEP build process

Modified:
    geronimo/devtools/eclipse-plugin/trunk/eclipse/build.xml
    geronimo/devtools/eclipse-plugin/trunk/eclipse/pom.xml

Modified: geronimo/devtools/eclipse-plugin/trunk/eclipse/build.xml
URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/eclipse/build.xml?rev=1001147&r1=1001146&r2=1001147&view=diff
==============================================================================
--- geronimo/devtools/eclipse-plugin/trunk/eclipse/build.xml (original)
+++ geronimo/devtools/eclipse-plugin/trunk/eclipse/build.xml Sat Sep 25 06:47:30 2010
@@ -41,36 +41,9 @@
         <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="tptp-version"                   value="4.7.0"/>
-        <property name="tptp"                           value="tptp.runtime-TPTP-${tptp-version}.zip"/>
-        <property name="tptp-runtime-url"               value="http://www.eclipse.org/downloads/download.php?file=/tptp/4.7.0/TPTP-4.7.0"/>
-
         <property name="protocol"                       value="&amp;r=1&amp;protocol=http"/>
     </target>
 
-    <target name="tptp" depends="init" description="Download and extract TPTP runtime package">
-            <echo>#################################################################################</echo>
-            <echo>##                                                                               </echo>
-            <echo>## Downloading: ${tptp}                                                          </echo>
-            <echo>##                                                                               </echo>
-            <echo>## From: ${tptp-runtime-url}                                                     </echo>
-            <echo>##                                                                               </echo>
-            <echo>#################################################################################</echo>
-            <mkdir dir="${LOCAL_M2_REPO}/eclipse-downloads"/>
-            <get src="${tptp-runtime-url}/${tptp}${protocol}"
-                 dest="${LOCAL_M2_REPO}/eclipse-downloads/${tptp}" 
-                 verbose="true"
-                 ignoreerrors="true"
-                 usetimestamp="true"/>
-            <echo>#################################################################################</echo>
-            <echo>##                                                                               </echo>
-            <echo>## Unzipping: ${tptp}                                                            </echo>
-            <echo>##                                                                               </echo>
-            <echo>#################################################################################</echo>
-            <unzip src="${LOCAL_M2_REPO}/eclipse-downloads/${tptp}" 
-                   dest="${LOCAL_M2_REPO}/eclipse"
-                   overwrite="true"/>
-    </target>
 
     <target name="win" depends="init" description="Download Windows-specific artifact(s)">
            <antcall target="win64"></antcall>

Modified: geronimo/devtools/eclipse-plugin/trunk/eclipse/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/eclipse/pom.xml?rev=1001147&r1=1001146&r2=1001147&view=diff
==============================================================================
--- geronimo/devtools/eclipse-plugin/trunk/eclipse/pom.xml (original)
+++ geronimo/devtools/eclipse-plugin/trunk/eclipse/pom.xml Sat Sep 25 06:47:30 2010
@@ -46,7 +46,6 @@
                                 <property name="LOCAL_M2_REPO" value="${settings.localRepository}" />
                                 <ant antfile="${basedir}/build.xml">
                                     <target name="${eclipsePlatformFamily}" />
-                                    <target name="tptp" />
                                 </ant>
                             </tasks>
                         </configuration>