You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by fr...@apache.org on 2008/04/10 10:47:42 UTC

svn commit: r646687 - /wicket/trunk/eclipse.sh

Author: frankbille
Date: Thu Apr 10 01:47:27 2008
New Revision: 646687

URL: http://svn.apache.org/viewvc?rev=646687&view=rev
Log:
All projects are now jdk1.5

Modified:
    wicket/trunk/eclipse.sh

Modified: wicket/trunk/eclipse.sh
URL: http://svn.apache.org/viewvc/wicket/trunk/eclipse.sh?rev=646687&r1=646686&r2=646687&view=diff
==============================================================================
--- wicket/trunk/eclipse.sh (original)
+++ wicket/trunk/eclipse.sh Thu Apr 10 01:47:27 2008
@@ -3,11 +3,9 @@
 
 case `uname` in
 Linux)
-	find jdk-1.4 -name .classpath -exec sed -i -e "s/org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.launching.JRE_CONTAINER\/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType\/J2SE-1.4/g" {} \;
-	find jdk-1.5 -name .classpath -exec sed -i -e "s/org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.launching.JRE_CONTAINER\/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType\/J2SE-1.5/g" {} \;
+	find . -name .classpath -exec sed -i -e "s/org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.launching.JRE_CONTAINER\/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType\/J2SE-1.5/g" {} \;
 	;;
 *)
-	find jdk-1.4 -name .classpath -exec sed -i "" -e "s/org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.launching.JRE_CONTAINER\/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType\/J2SE-1.4/g" {} \;
-	find jdk-1.5 -name .classpath -exec sed -i "" -e "s/org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.launching.JRE_CONTAINER\/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType\/J2SE-1.5/g" {} \;
+	find . -name .classpath -exec sed -i "" -e "s/org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.launching.JRE_CONTAINER\/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType\/J2SE-1.5/g" {} \;
 	;;
 esac