Mercurial > dive4elements > river
view contrib/make_flys_release/bin/run.sh @ 4656:442fbb290fa8
Introduce river mapfile generation (WARNING: Changes in config xml files required!).
On startup the RiverMapfileGeneratorStarter is called by the server app.
The starter invokes a call to RiverMapfileGenerator.generate() which
reads all available rivers from the database and generates
layers for each river (in theory...uncompleted) in a
river.map file.
The old MapfileGenerator which generates layers that have
artifact dependencies is now in ArtifactMapfileGenerator.
author | Christian Lins <christian.lins@intevation.de> |
---|---|
date | Tue, 11 Dec 2012 15:24:24 +0100 |
parents | 7e82d51c5a27 |
children | 28e3019a6b14 |
line wrap: on
line source
#!/bin/bash APP=de.intevation.artifactdatabase.App DIR=`dirname $0`/.. DIR=`readlink -f "$DIR"` CLASSPATH= for l in `find "$DIR/bin/lib" -name \*.jar -print`; do CLASSPATH=$CLASSPATH:$l done export CLASSPATH exec java -Xmx256m \ -server \ -Djava.awt.headless=true \ -Dflys.datacage.recommendations.development=false \ -Djava.io.tmpdir="$DIR/cache" \ -Dflys.backend.enablejmx=true \ -Dflys.uesk.keep.artifactsdir=false \ -Dwsplgen.bin.path="$DIR/bin/wsplgen.exe" \ -Dwsplgen.log.output=false \ -Dartifact.database.dir="$DIR/conf" \ $APP