aboutsummaryrefslogtreecommitdiff
path: root/build/mvn
diff options
context:
space:
mode:
authorWeiqing Yang <yangweiqing001@gmail.com>2016-12-03 10:36:19 +0000
committerSean Owen <sowen@cloudera.com>2016-12-03 10:36:19 +0000
commit576197320cba515c41ec2fc4139b94a50206b29f (patch)
tree5da5848743ef12f7a15035ca5cbb07045cabd75a /build/mvn
parentd1312fb7edffd6e10c86f69ddfff05f8915856ac (diff)
downloadspark-576197320cba515c41ec2fc4139b94a50206b29f.tar.gz
spark-576197320cba515c41ec2fc4139b94a50206b29f.tar.bz2
spark-576197320cba515c41ec2fc4139b94a50206b29f.zip
[SPARK-18638][BUILD] Upgrade sbt, Zinc, and Maven plugins
## What changes were proposed in this pull request? This PR is to upgrade: ``` sbt: 0.13.11 -> 0.13.13, zinc: 0.3.9 -> 0.3.11, maven-assembly-plugin: 2.6 -> 3.0.0 maven-compiler-plugin: 3.5.1 -> 3.6. maven-jar-plugin: 2.6 -> 3.0.2 maven-javadoc-plugin: 2.10.3 -> 2.10.4 maven-source-plugin: 2.4 -> 3.0.1 org.codehaus.mojo:build-helper-maven-plugin: 1.10 -> 1.12 org.codehaus.mojo:exec-maven-plugin: 1.4.0 -> 1.5.0 ``` The sbt release notes since the last version we used are: [v0.13.12](https://github.com/sbt/sbt/releases/tag/v0.13.12) and [v0.13.13 ](https://github.com/sbt/sbt/releases/tag/v0.13.13). ## How was this patch tested? Pass build and the existing tests. Author: Weiqing Yang <yangweiqing001@gmail.com> Closes #16069 from weiqingy/SPARK-18638.
Diffstat (limited to 'build/mvn')
-rwxr-xr-xbuild/mvn6
1 files changed, 3 insertions, 3 deletions
diff --git a/build/mvn b/build/mvn
index c3ab62da36..866bad892c 100755
--- a/build/mvn
+++ b/build/mvn
@@ -91,13 +91,13 @@ install_mvn() {
# Install zinc under the build/ folder
install_zinc() {
- local zinc_path="zinc-0.3.9/bin/zinc"
+ local zinc_path="zinc-0.3.11/bin/zinc"
[ ! -f "${_DIR}/${zinc_path}" ] && ZINC_INSTALL_FLAG=1
local TYPESAFE_MIRROR=${TYPESAFE_MIRROR:-https://downloads.typesafe.com}
install_app \
- "${TYPESAFE_MIRROR}/zinc/0.3.9" \
- "zinc-0.3.9.tgz" \
+ "${TYPESAFE_MIRROR}/zinc/0.3.11" \
+ "zinc-0.3.11.tgz" \
"${zinc_path}"
ZINC_BIN="${_DIR}/${zinc_path}"
}