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