You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by cw...@apache.org on 2009/09/04 15:40:50 UTC

svn commit: r811393 - /incubator/uima/uima-as/trunk/uima-as-distr/src/main/scripts/deployAsyncService.sh

Author: cwiklik
Date: Fri Sep  4 13:40:49 2009
New Revision: 811393

URL: http://svn.apache.org/viewvc?rev=811393&view=rev
Log:
UIMA-1531 Modified to call setUimaClasspath, removed UimaBootstrap and instead depend on executable jar

Modified:
    incubator/uima/uima-as/trunk/uima-as-distr/src/main/scripts/deployAsyncService.sh

Modified: incubator/uima/uima-as/trunk/uima-as-distr/src/main/scripts/deployAsyncService.sh
URL: http://svn.apache.org/viewvc/incubator/uima/uima-as/trunk/uima-as-distr/src/main/scripts/deployAsyncService.sh?rev=811393&r1=811392&r2=811393&view=diff
==============================================================================
--- incubator/uima/uima-as/trunk/uima-as-distr/src/main/scripts/deployAsyncService.sh (original)
+++ incubator/uima/uima-as/trunk/uima-as-distr/src/main/scripts/deployAsyncService.sh Fri Sep  4 13:40:49 2009
@@ -31,7 +31,7 @@
        exit;
 fi;
 
-# . "$UIMA_HOME/bin/setUimaClassPath.sh"
+. "$UIMA_HOME/bin/setUimaClassPath.sh"
 
 if [ "$JAVA_HOME" = "" ]
 then
@@ -45,4 +45,4 @@
   ACTIVEMQ_HOME=$UIMA_HOME/apache-activemq-4.1.1
 fi
 
-"$UIMA_JAVA_CALL" -cp "$UIMA_HOME/lib/uimaj-bootstrap.jar"  "-Duima.datapath=$UIMA_DATAPATH" "-Djava.util.logging.config.file=$UIMA_LOGGER_CONFIG_FILE" $UIMA_JVM_OPTS "-Duima.datapath=$UIMA_DATAPATH" "-Djava.util.logging.config.file=$UIMA_LOGGER_CONFIG_FILE" $UIMA_JVM_OPTS -Dorg.apache.uima.jarpath="$UIMA_HOME/lib:$ACTIVEMQ_HOME:$ACTIVEMQ_HOME/lib:$ACTIVEMQ_HOME/lib/optional:$USER_JAR_PATH" org.apache.uima.bootstrap.UimaBootstrap org.apache.uima.adapter.jms.service.UIMA_Service -saxonURL "file:$UIMA_HOME/saxon/saxon8.jar" -xslt "$UIMA_HOME/bin/dd2spring.xsl" -dd $*
+"$UIMA_JAVA_CALL" "-Duima.datapath=$UIMA_DATAPATH" "-Djava.util.logging.config.file=$UIMA_LOGGER_CONFIG_FILE" $UIMA_JVM_OPTS -DUimaBootstrapSuppressClassPathDisplay -Dorg.apache.uima.jarpath="$UIMA_CLASSPATH:$ACTIVEMQ_HOME:$ACTIVEMQ_HOME/lib:$ACTIVEMQ_HOME/lib/optional:$UIMA_JAR_PATH" -jar "$UIMA_HOME/lib/uimaj-bootstrap.jar" org.apache.uima.adapter.jms.service.UIMA_Service -saxonURL "file:$UIMA_HOME/saxon/saxon8.jar" -xslt "$UIMA_HOME/bin/dd2spring.xsl" -dd $*