You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by al...@apache.org on 2007/05/14 02:27:06 UTC

svn commit: r537685 - /incubator/wicket/trunk/eclipse.sh

Author: almaw
Date: Sun May 13 17:27:05 2007
New Revision: 537685

URL: http://svn.apache.org/viewvc?view=rev&rev=537685
Log:
Use 1.5 environment for 1.5 projects, for people with JDK 6, etc.

Modified:
    incubator/wicket/trunk/eclipse.sh

Modified: incubator/wicket/trunk/eclipse.sh
URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/eclipse.sh?view=diff&rev=537685&r1=537684&r2=537685
==============================================================================
--- incubator/wicket/trunk/eclipse.sh (original)
+++ incubator/wicket/trunk/eclipse.sh Sun May 13 17:27:05 2007
@@ -4,8 +4,10 @@
 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 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" {} \;
 	;;
 esac