mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-06 19:36:03 +00:00
* HHH-13799 : Criteria API support for Hibernate Spatial Co-authored-by: Karel Maesen <karel@geovise.com>
15 lines
392 B
Bash
Executable File
15 lines
392 B
Bash
Executable File
#! /bin/bash
|
|
|
|
## The same effect can be achieved by setting the system properties
|
|
# in ~/.gradle/gradle.properties
|
|
|
|
TASK=matrix
|
|
if [[ -n $@ ]]; then
|
|
TASK="$@"
|
|
fi
|
|
|
|
DBS=`pwd`/databases
|
|
echo "Database configurations read from : $DBS"
|
|
echo "TASK : $TASK"
|
|
../gradlew -Dhibernate-matrix-databases=$DBS -Dhibernate-matrix-ignore='mysql50,mysql51,postgresql82,postgresql83,postgresql84,hana' $TASK
|