9 lines
289 B
Bash
Executable File
9 lines
289 B
Bash
Executable File
#! /bin/bash
|
|
|
|
TASK=matrix
|
|
if [[ -n $@ ]]; then
|
|
TASK="$@"
|
|
fi
|
|
echo "TASK : $TASK"
|
|
../gradlew -Dhibernate-matrix-databases="/home/maesenka/workspaces/github/hibernate-core/hibernate-spatial/databases" -Dhibernate-matrix-ignore='mysql50,mysql51,postgresql82,postgresql83,postgresql84' $TASK
|