view contrib/run.sh @ 500:cbe3dfd3e1a6 3.0.15

Framework: Added a method to the transition engine to recursively collect all state id for a given artifact identifer and a state id. Goal is to create a predicate dc:state-successors-contains($artifict-type-identifer, 'winfo.calculation.select, $current-state-id).
author Sascha L. Teichmann <teichmann@intevation.de>
date Tue, 27 Aug 2013 15:48:26 +0200
parents 933bbc9fc11f
children
line wrap: on
line source
#!/bin/bash

# Copyright (c) 2010 by Intevation GmbH
#
# This program is free software under the LGPL (>=v2.1)
# Read the file LGPL.txt coming with the software for details
# or visit http://www.gnu.org/licenses/ if it does not exist.

RESTLET_CORE=`find -L ~/.m2 -name org\.restlet-\*SNAP\*.jar`
RESTLET_XML=`find -L ~/.m2 -name org\.restlet.ext.xml-\*SNAP\*.jar`
H2=`find -L ~/.m2 -name h2-\*.jar`
LOG4J=`find -L ~/.m2 -name log4j-1.2.13\*.jar`
DBCP=`find -L ~/.m2 -name commons-dbcp-\*.jar`
POOL=`find -L ~/.m2 -name commons-pool-*.jar | head -1`
POSTGRES=`find -L ~/.m2 -name postgresql-8.3\*.jar`
DIR=`dirname $0`/..
CLASSPATH=$DIR/artifact-database/target/classes
CLASSPATH=$CLASSPATH:$DIR/artifacts/target/classes
CLASSPATH=$CLASSPATH:$RESTLET_CORE:$RESTLET_XML
CLASSPATH=$CLASSPATH:$LOG4J:$H2:$DBCP:$POOL:$POSTGRES
export CLASSPATH
java "$@"

http://dive4elements.wald.intevation.org