We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36b2c4d commit 04c2434Copy full SHA for 04c2434
.ci/travis.sh
@@ -5,6 +5,12 @@ set -euo pipefail
5
case "$1" in
6
7
install)
8
+ SONAR_APP_VERSION="7.9.2"
9
+ if [[ ! -f ~/.m2/sonar-application-$SONAR_APP_VERSION.zip ]]; then
10
+ URL="https://repox.jfrog.io/repox/sonarsource/org/sonarsource/sonarqube/"
11
+ URL=$URL"sonar-application/$SONAR_APP_VERSION/sonar-application-$SONAR_APP_VERSION.zip"
12
+ wget $URL -O ~/.m2/sonar-application-$SONAR_APP_VERSION.zip
13
+ fi
14
mvn -e clean install
15
;;
16
0 commit comments