diff options
author | David Rautureau <david.rautureau@sonarsource.com> | 2018-02-08 15:01:19 +0100 |
---|---|---|
committer | David Rautureau <david.rautureau@sonarsource.com> | 2018-03-09 11:33:38 +0100 |
commit | 1a17e4302e4b63de6b4ce7c049441803b9471524 (patch) | |
tree | 031bcfbf302c7909c5b45a7c31f1bbc00a2fce34 /run-integration-tests.sh | |
parent | 21fbe3697bdb6e66016ef8d0bea49da574e02e7d (diff) | |
download | sonarqube-1a17e4302e4b63de6b4ce7c049441803b9471524.tar.gz sonarqube-1a17e4302e4b63de6b4ce7c049441803b9471524.zip |
Move To Gradle
Diffstat (limited to 'run-integration-tests.sh')
-rwxr-xr-x | run-integration-tests.sh | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/run-integration-tests.sh b/run-integration-tests.sh index 82ea7a8b1a2..78ce995c7c4 100755 --- a/run-integration-tests.sh +++ b/run-integration-tests.sh @@ -16,12 +16,8 @@ CATEGORY=$1 ORCHESTRATOR_CONFIG_URL=$2 shift 2 -cd tests/plugins -mvn clean package -B -e -V - -cd .. -mvn verify \ +./gradlew --no-daemon --console plain -i \ + :tests:integrationTest \ -Dcategory="$CATEGORY" \ - -Dorchestrator.configUrl=$ORCHESTRATOR_CONFIG_URL \ - -Pwith-db-drivers \ - -B -e -V $* + -Dorchestrator.configUrl=$ORCHESTRATOR_CONFIG_URL \ + $* |