aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--it/pom.xml4
-rwxr-xr-xtravis.sh13
2 files changed, 7 insertions, 10 deletions
diff --git a/it/pom.xml b/it/pom.xml
index 4ed6ea7..1f2bbdd 100644
--- a/it/pom.xml
+++ b/it/pom.xml
@@ -31,7 +31,7 @@
<dependency>
<groupId>com.sonarsource.orchestrator</groupId>
<artifactId>sonar-orchestrator</artifactId>
- <version>3.3-SNAPSHOT</version>
+ <version>3.3</version>
</dependency>
<dependency>
<groupId>junit</groupId>
@@ -52,7 +52,7 @@
<scope>test</scope>
</dependency>
</dependencies>
-
+
<build>
<pluginManagement>
<plugins>
diff --git a/travis.sh b/travis.sh
index dea7fd5..22409ea 100755
--- a/travis.sh
+++ b/travis.sh
@@ -3,27 +3,24 @@
set -euo pipefail
function installTravisTools {
- curl -sSL https://raw.githubusercontent.com/sonarsource/travis-utils/v13/install.sh | bash
+ curl -sSL https://raw.githubusercontent.com/sonarsource/travis-utils/v14/install.sh | bash
source /tmp/travis-utils/env.sh
}
-function buildSnapshotDependencies {
- travis_build "SonarSource/sonar-orchestrator" "0fe60edd0978300334ecc9101e4c10bcb05516d0"
- travis_build_green "SonarSource/sonarqube" "master"
-}
-
case "$TESTS" in
CI)
installTravisTools
- buildSnapshotDependencies
+
+ travis_build_green "SonarSource/sonarqube" "master"
mvn verify -B -e -V
;;
IT-DEV)
installTravisTools
- buildSnapshotDependencies
+
+ travis_build_green "SonarSource/sonarqube" "master"
mvn install -Dsource.skip=true -Denforcer.skip=true -Danimal.sniffer.skip=true -Dmaven.test.skip=true