blob: 041d3b1def181f86a2175602f0b4f9e3010891c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/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 $*
|