Skip to content
Snippets Groups Projects
Commit 182a5fbe authored by felmer's avatar felmer
Browse files

SP-940, SWE-22: put common.jar before cifex.jar in DSS startup script

SVN: 29997
parent 83944787
No related branches found
No related tags found
No related merge requests found
......@@ -147,8 +147,9 @@ if [ "$command" == "start" ]; then
./autosymlink.sh
fi
# Build classpath from $LIB_FOLDER and $EXT_LIB_FOLDER content. First JAR is datastore_server.jar because it has to appear before cifex.jar
CP=`echo $LIB_FOLDER/datastore_server.jar $LIB_FOLDER/*.jar $EXT_LIB_FOLDER/*.jar | sed 's/ /:/g'`
# Build classpath from $LIB_FOLDER and $EXT_LIB_FOLDER content.
# datastore_server.jar and common.jar have to appear before cifex.jar
CP=`echo $LIB_FOLDER/datastore_server.jar $LIB_FOLDER/common.jar $LIB_FOLDER/*.jar $EXT_LIB_FOLDER/*.jar | sed 's/ /:/g'`
CMD="${JAVA_BIN} ${JAVA_OPTS} ${JAVA_MEM_OPTS} -classpath $CP ch.systemsx.cisd.openbis.dss.generic.DataStoreServer"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment