Mercurial > dive4elements > framework
changeset 538:8bf00b8266fe 3.1.10
Add script for creation of h2-database and remove concurrent config.
author | Tom Gottfried <tom@intevation.de> |
---|---|
date | Wed, 17 Dec 2014 15:46:21 +0100 |
parents | a3397b6aab0a |
children | c14bf6b35fc5 |
files | artifact-database/bin/createArtifacts.sh artifact-database/pom.xml |
diffstat | 2 files changed, 17 insertions(+), 13 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/artifact-database/bin/createArtifacts.sh Wed Dec 17 15:46:21 2014 +0100 @@ -0,0 +1,17 @@ +#!/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"
--- a/artifact-database/pom.xml Tue Dec 16 17:39:57 2014 +0100 +++ b/artifact-database/pom.xml Wed Dec 17 15:46:21 2014 +0100 @@ -28,19 +28,6 @@ </archive> </configuration> </plugin> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>exec-maven-plugin</artifactId> - <version>1.1</version> - <configuration> - <executable>java</executable> - <arguments> - <argument>-classpath</argument> - <classpath/> - <argument>org.dive4elements.artifactdatabase.App</argument> - </arguments> - </configuration> - </plugin> </plugins> </build> <dependencies>