sonarqube/run-db-unit-tests.sh
2016-02-10 17:13:16 +01:00

12 lines
186 B
Bash
Executable File

#!/bin/bash
set -euo pipefail
ORCHESTRATOR_CONFIG_URL=$1
shift
mvn verify \
-pl :sonar-db \
-Dorchestrator.configUrl=$ORCHESTRATOR_CONFIG_URL \
-Dwith-db-drivers \
-B -e -V $*