Mercurial > dive4elements > http-client
view bin/run.sh @ 37:874c25363dc9 2.9
Added new method findUser to HttpClient
With the new method it is possible to get a document by an account name.
http-client/trunk@5259 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Bjoern Ricks <bjoern.ricks@intevation.de> |
---|---|
date | Fri, 24 Aug 2012 13:59:12 +0000 |
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