All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hi.siddhi-service.4.1.61.source-code.startup.sh Maven / Gradle / Ivy

There is a newer version: 4.5.11
Show newest version
#! /bin/sh


# add the libraries to the SIDDHI_CLASSPATH.
# EXEDIR is the directory where this executable is.
SCRIPT_PATH=${0%/*}

if [ "$0" != "$SCRIPT_PATH" ] && [ "$SCRIPT_PATH" != "" ]; then
    cd $SCRIPT_PATH
fi

DIRLIBS=dependencies/*.jar

for i in ${DIRLIBS}
do
  if [ -z "$SIDDHI_CLASSPATH" ] ; then
    SIDDHI_CLASSPATH=$i
  else
    SIDDHI_CLASSPATH="$i":$SIDDHI_CLASSPATH
  fi
done

echo $SIDDHI_CLASSPATH
echo $EXEDIR

java -cp siddhi-service-4.0.0.jar":$SIDDHI_CLASSPATH:." org.wso2.siddhi.service.Application




© 2015 - 2025 Weber Informatics LLC | Privacy Policy