Mercurial > dive4elements > http-client
view bin/run.sh @ 129:e53ef972fce3 3.2.x tip
Make compiler more verbose
author | Tom Gottfried <tom@intevation.de> |
---|---|
date | Tue, 17 Jan 2023 14:22:25 +0100 |
parents | e602a29f1dcc |
children |
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" \ org.dive4elements.artifacts.httpclient.ConsoleClient \ 2>&1 > /dev/null