echo echo The frameworks scripts have been deprecated. Please use the new scripts in echo the /bin directory. See the file frameworks.DEPRECATED.txt for more echo information echo # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to you under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # --------------------------------------------------------- # -- This script file sets the CLASSPATH environment variable # -- for use with Derby products in embedded mode # -- # -- To use this script from other locations, change the # -- value assigned to DERBY_INSTALL to be an absolute path # -- (export DERBY_INSTALL=/opt/derby) instead of the current relative path # -- # -- This file for use on Unix ksh systems # -- # --------------------------------------------------------- # DERBY_INSTALL= DERBY_HOME=${DERBY_HOME:-$DERBY_INSTALL} [ -z "$DERBY_HOME" ] && { echo "\$DERBY_HOME or \$DERBY_INSTALL not set. Please set one of these variables" echo "to the location of your Derby installation." exit 1 } export CLASSPATH="${DERBY_HOME}/lib/derby.jar:${DERBY_HOME}/lib/derbytools.jar:${CLASSPATH}"