Browse Source

Fix url to download maven in travis.sh

tags/6.7
Julien Lancelot 6 years ago
parent
commit
6c36e00db6
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      travis.sh

+ 1
- 1
travis.sh View File

@@ -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

Loading…
Cancel
Save