blob: 4e93f4030a545e8ac112e36072a3c73c69448d8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
set -euo pipefail
ORCHESTRATOR_CONFIG_URL=$1
shift
cd it
mvn verify \
-Dorchestrator.configUrl=$ORCHESTRATOR_CONFIG_URL \
-Dwith-db-drivers \
-Dcategory=Category1 \
-Dsource.skip=true -B -e -V $*
|