aboutsummaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorKousuke Saruta <sarutak@oss.nttdata.co.jp>2015-01-26 13:07:49 -0800
committerPatrick Wendell <patrick@databricks.com>2015-01-26 13:07:49 -0800
commitc094c73270837602b875b18998133a2364a89e45 (patch)
tree7d7b0fc943aaca04d10e32dbf817294fd9d2bd58 /build
parent142093179a4c40bdd90744191034de7b94a963ff (diff)
downloadspark-c094c73270837602b875b18998133a2364a89e45.tar.gz
spark-c094c73270837602b875b18998133a2364a89e45.tar.bz2
spark-c094c73270837602b875b18998133a2364a89e45.zip
[SPARK-5339][BUILD] build/mvn doesn't work because of invalid URL for maven's tgz.
build/mvn will automatically download tarball of maven. But currently, the URL is invalid. Author: Kousuke Saruta <sarutak@oss.nttdata.co.jp> Closes #4124 from sarutak/SPARK-5339 and squashes the following commits: 6e96121 [Kousuke Saruta] Merge branch 'master' of git://git.apache.org/spark into SPARK-5339 0e012d1 [Kousuke Saruta] Updated Maven version to 3.2.5 ca26499 [Kousuke Saruta] Fixed URL of the tarball of Maven
Diffstat (limited to 'build')
-rwxr-xr-xbuild/mvn8
1 files changed, 4 insertions, 4 deletions
diff --git a/build/mvn b/build/mvn
index 43471f83e9..f91e2b4bdc 100755
--- a/build/mvn
+++ b/build/mvn
@@ -68,10 +68,10 @@ install_app() {
# Install maven under the build/ folder
install_mvn() {
install_app \
- "http://apache.claz.org/maven/maven-3/3.2.3/binaries" \
- "apache-maven-3.2.3-bin.tar.gz" \
- "apache-maven-3.2.3/bin/mvn"
- MVN_BIN="${_DIR}/apache-maven-3.2.3/bin/mvn"
+ "http://archive.apache.org/dist/maven/maven-3/3.2.5/binaries" \
+ "apache-maven-3.2.5-bin.tar.gz" \
+ "apache-maven-3.2.5/bin/mvn"
+ MVN_BIN="${_DIR}/apache-maven-3.2.5/bin/mvn"
}
# Install zinc under the build/ folder