Skip to content

Commit

Permalink
[SPARK-5339][BUILD] build/mvn doesn't work because of invalid URL for…
Browse files Browse the repository at this point in the history
… maven's tgz.

build/mvn will automatically download tarball of maven. But currently, the URL is invalid.

Author: Kousuke Saruta <[email protected]>

Closes apache#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
  • Loading branch information
sarutak authored and pwendell committed Jan 26, 2015
1 parent 1420931 commit c094c73
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build/mvn
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c094c73

Please sign in to comment.