aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2015-04-28 11:03:43 +0200
committerSimon Brandhof <simon.brandhof@sonarsource.com>2015-04-28 11:03:43 +0200
commit244a9a026b9f236fc2b155e139b109cf279c0b8e (patch)
treec80d6ef52904bc3f46b009594eb3c0a94c988ad1 /.travis.yml
parentbb2e1ad73e60e2fa90d979db04243826703b3257 (diff)
downloadsonarqube-244a9a026b9f236fc2b155e139b109cf279c0b8e.tar.gz
sonarqube-244a9a026b9f236fc2b155e139b109cf279c0b8e.zip
Force maven 3.2.5 in travis build
Travis recently upgraded to maven 3.3.1, which is not supported for SQ build
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index 8df78c267b2..6cca2ef0f51 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -6,6 +6,14 @@ jdk:
script:
- mvn clean verify -B -e -V
+before_install:
+ # Maven 3.2.5
+ - wget http://apache.mirrors.ovh.net/ftp.apache.org/dist/maven/maven-3/3.2.5/binaries/apache-maven-3.2.5-bin.tar.gz
+ - tar xvf apache-maven-3.2.5-bin.tar.gz > /dev/null
+ - export MVN_HOME=`pwd`/apache-maven-3.2.5
+ - export PATH=${MVN_HOME}/bin/:${PATH}
+ - mvn --version
+
install: true
sudo: false