view etl/bin/run.sh @ 8836:f06d7a40bde5

Move README to doc as to include it in package.
author Tom Gottfried <tom@intevation.de>
date Wed, 17 May 2017 16:15:41 +0200
parents d8d71005a210
children 4542d23f98bf
line wrap: on
line source
#!/bin/bash

APP=org.dive4elements.river.etl.aft.Sync

DIR=`dirname $0`
DIR=`readlink -f $DIR`

CLASSPATH=
for l in `find "$DIR/lib" -name \*.jar -print`; do
   CLASSPATH=$CLASSPATH:$l
done

export CLASSPATH

exec java \
    -Dlog4j.configuration=file://$DIR/log4j.properties \
    -Dconfig.file=$DIR/../doc/conf.xml \
    $APP

http://dive4elements.wald.intevation.org