]> source.dussan.org Git - sonarqube.git/commitdiff
Fix url to download maven in travis.sh
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Mon, 30 Oct 2017 07:52:02 +0000 (08:52 +0100)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Mon, 30 Oct 2017 08:30:53 +0000 (09:30 +0100)
travis.sh

index 914a14561cd669d5dba911c5012bc11a098d84ce..8f9149b097872ea872ceb263af7c9dc7e45b9866 100755 (executable)
--- a/travis.sh
+++ b/travis.sh
@@ -32,7 +32,7 @@ function installMaven {
   pushd ~/maven > /dev/null
   if [ ! -d "apache-maven-3.5" ]; then
     echo "Download Maven 3.5"
-    curl -sSL http://apache.crihan.fr/dist/maven/maven-3/3.5.0/binaries/apache-maven-3.5.0-bin.tar.gz | tar zx -C ~/maven
+    curl -sSL https://archive.apache.org/dist/maven/maven-3/3.5.0/binaries/apache-maven-3.5.0-bin.tar.gz | tar zx -C ~/maven
   fi
   popd > /dev/null
   export M2_HOME=~/maven/apache-maven-3.5.0