sonarqube/run-db-unit-tests.sh

12 lines
225 B
Bash
Raw Normal View History

2016-02-05 16:51:05 +01:00
#!/bin/bash
set -euo pipefail
ORCHESTRATOR_CONFIG_URL=$1
shift
mvn verify \
-pl :sonar-db-core,:sonar-db-migration,:sonar-db-dao \
2016-02-05 16:51:05 +01:00
-Dorchestrator.configUrl=$ORCHESTRATOR_CONFIG_URL \
-Dwith-db-drivers \
-B -e -V $*