2012-01-17 16:26:51 -05:00
|
|
|
#! /bin/bash
|
|
|
|
|
2020-02-24 08:42:48 -05:00
|
|
|
## The same effect can be achieved by setting the system properties
|
|
|
|
# in ~/.gradle/gradle.properties
|
|
|
|
|
2012-01-17 16:26:51 -05:00
|
|
|
TASK=matrix
|
|
|
|
if [[ -n $@ ]]; then
|
|
|
|
TASK="$@"
|
|
|
|
fi
|
2012-02-29 11:30:40 -05:00
|
|
|
|
|
|
|
DBS=`pwd`/databases
|
|
|
|
echo "Database configurations read from : $DBS"
|
2012-01-17 16:26:51 -05:00
|
|
|
echo "TASK : $TASK"
|
2017-09-14 06:03:41 -04:00
|
|
|
../gradlew -Dhibernate-matrix-databases=$DBS -Dhibernate-matrix-ignore='mysql50,mysql51,postgresql82,postgresql83,postgresql84,hana' $TASK
|