blob: 7eea321bbeb8e0d258150aba0e59a8210032eeb9 (
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-core,:sonar-db-migration,:sonar-db-dao \
-Dorchestrator.configUrl=$ORCHESTRATOR_CONFIG_URL \
-Dwith-db-drivers \
-B -e -V $*
|