mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-07 03:38:16 +00:00
- Identity column support - Spatial support - Various minor improvements in HANA dialects
12 lines
290 B
Bash
Executable File
12 lines
290 B
Bash
Executable File
#! /bin/bash
|
|
|
|
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
|