Index: branches/quartz-2.0.2-rc/examples/example12/server.sh =================================================================== diff -u -N --- branches/quartz-2.0.2-rc/examples/example12/server.sh (revision 1556) +++ branches/quartz-2.0.2-rc/examples/example12/server.sh (revision 0) @@ -1,22 +0,0 @@ -#!/bin/sh - -# Change this to your JDK installation root -# -#JAVA_HOME=/usr/java/jdk1.6.0_18 - -JRE=$JAVA_HOME/jre -JAVA=$JRE/bin/java - -workdir=`dirname $0` -workdir=`cd ${workdir} && pwd` -QUARTZ=${workdir}/../.. - -. ${QUARTZ}/examples/bin/buildcp.sh - -LOGGING_PROPS="-Dlog4j.configuration=file:${workdir}/log4j.xml" - -# Set the name and location of the quartz.properties file -QUARTZ_PROPS="-Dorg.quartz.properties=${workdir}/server.properties" - -$JAVA -classpath $QUARTZ_CP $QUARTZ_PROPS $LOGGING_PROPS org.quartz.examples.example12.RemoteServerExample -