view artifact-database/bin/createArtifacts.sh @ 539:c14bf6b35fc5

Added tag 3.1.10 for changeset 8bf00b8266fe
author Tom Gottfried <tom@intevation.de>
date Thu, 07 May 2015 09:53:37 +0200
parents 8bf00b8266fe
children 2b40f4bf190d
line wrap: on
line source
#!/bin/bash

mkdir -p artifactsdb

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

if [ $# != 1 ]; then
    SCHEMA="$DIR/../doc/schema-h2.sql"
else
    SCHEMA="$1"
fi

URL="jdbc:h2:`readlink -f artifactsdb`/artifacts"

mvn -e -Dexec.mainClass=org.h2.tools.RunScript exec:java \
    -Dexec.args="-url $URL -script $SCHEMA"

http://dive4elements.wald.intevation.org