diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-10-30 08:52:02 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-10-30 09:30:53 +0100 |
commit | 6c36e00db6adfd8f3b6986be1549748feeca4dc2 (patch) | |
tree | a2552c9f6fb97d7270579b0a447cf520244c7b2c /travis.sh | |
parent | 70bb344fb38dbb05b71d203a25f8aeff60fcd724 (diff) | |
download | sonarqube-6c36e00db6adfd8f3b6986be1549748feeca4dc2.tar.gz sonarqube-6c36e00db6adfd8f3b6986be1549748feeca4dc2.zip |
Fix url to download maven in travis.sh
Diffstat (limited to 'travis.sh')
-rwxr-xr-x | travis.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/travis.sh b/travis.sh index 914a14561cd..8f9149b0978 100755 --- 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 |