view bin/run.sh @ 109:810161c6d1ce 3.1.7

Added tag 3.1.6 for changeset 0d179b90920f
author Tom Gottfried <tom@intevation.de>
date Wed, 17 Sep 2014 19:46:35 +0200
parents a1db30b33f43
children 7261c948425c
line wrap: on
line source
#!/bin/bash

DIR=`dirname $0`/..
DIR=`readlink -f "$DIR"`

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

export CLASSPATH

exec java -Xmx256m \
     -Djava.io.tmpdir="$DIR/cache" \
     -Dconfig.dir="$DIR/conf" \
     -Dconfig.file="demo-config.conf" \
     de.intevation.bsh.consoleclient.ConsoleClient \
     2>&1 > /dev/null

http://dive4elements.wald.intevation.org