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

svn commit: r1022938 - /geronimo/devtools/eclipse-plugin/trunk/testsuite/launcher/build.xml

Author: tkirby
Date: Fri Oct 15 14:28:20 2010
New Revision: 1022938

URL: http://svn.apache.org/viewvc?rev=1022938&view=rev
Log:
remove spurious whitespace

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

Modified: geronimo/devtools/eclipse-plugin/trunk/testsuite/launcher/build.xml
URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/testsuite/launcher/build.xml?rev=1022938&r1=1022937&r2=1022938&view=diff
==============================================================================
--- geronimo/devtools/eclipse-plugin/trunk/testsuite/launcher/build.xml (original)
+++ geronimo/devtools/eclipse-plugin/trunk/testsuite/launcher/build.xml Fri Oct 15 14:28:20 2010
@@ -17,26 +17,26 @@
   -->
 
 <!--
- |  
+ |
  | Ant script to start Eclipse via the Equinox launcher
- |                                                                                             
- |                                                                                             
- | @version $Rev$ $Date$                                                                                            
- |                                                                                             
+ |
+ |
+ | @version $Rev$ $Date$
+ |
  -->
 <project name="GEP Automated Testsuite Launcher">
 
     <!--
-     |  
-     | Copy and rename the eqiunox launcher jar, 
+     |
+     | Copy and rename the eqiunox launcher jar,
      | Copy and rename the org.eclipse.test folder
-     |                                                                                             
+     |
      -->
     <target name="init">
-	    <!-- Prompt to install aries tools manually -->
+        <!-- Prompt to install aries tools manually -->
         <input message="&#10;Free Aries Tools download URL is http://www.ibm.com/developerworks/rational/downloads/10/rationaldevtoolsforosgiapplications.html&#10;Please install aries tools manually for eclipse under testsuite/launcher/eclipse and then press Enter to continue..."/>
-        
-		
+
+
         <property name="eclipse-home" value="eclipse"/>
         <copy tofile="${eclipse-home}/eclipse/plugins/org.eclipse.equinox.launcher.jar">
             <fileset dir="${eclipse-home}/eclipse/plugins"
@@ -50,12 +50,12 @@
 
 
     <!--
-     |  
+     |
      | Start Eclipse via the Equinox launcher (Windows)
-     |                                                                                             
+     |
      -->
     <target name="win32" depends="init" description="Start Equinox launcher on Windows">
-        <java classname="org.eclipse.equinox.launcher.Main" 
+        <java classname="org.eclipse.equinox.launcher.Main"
               failonerror="true"
               fork="true">
             <classpath>
@@ -69,15 +69,15 @@
             <arg value="-Dws=win32"/>
             <arg value="-Darch=x86"/>
         </java>
-    </target>                                         
+    </target>
 
     <!--
-     |  
+     |
      | Start Eclipse via the Equinox launcher (Linux)
-     |                                                                                             
+     |
      -->
     <target name="linux" depends="init" description="Start Equinox launcher on Linux">
-        <java classname="org.eclipse.equinox.launcher.Main" 
+        <java classname="org.eclipse.equinox.launcher.Main"
               failonerror="true"
               fork="true">
             <classpath>
@@ -94,12 +94,12 @@
     </target>
 
     <!--
-     |  
+     |
      | Start Eclipse via the Equinox launcher (Mac)
-     |                                                                                             
+     |
      -->
     <target name="macos" depends="init" description="Start Equinox launcher on Mac">
-        <java classname="org.eclipse.equinox.launcher.Main" 
+        <java classname="org.eclipse.equinox.launcher.Main"
               failonerror="true"
               fork="true">
             <classpath>
@@ -116,4 +116,3 @@
     </target>
 
 </project>
-