Repository: zeppelin
Updated Branches:
  refs/heads/master 46ae6fe39 -> bccd5f93c


Change maven version from 3.3.3 to 3.3.9 at vagrant script and its documentation

### What is this PR for?
Change maven version from 3.3.3 to 3.3.9 in vagrant script and its 
documentation due to path to 3.3.3 doesn't exist (return 404 from apache mirror)

### What type of PR is it?
Bug Fix | Documentation

### What is the Jira issue?
ZEPPELIN-1299

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: Jesang Yoon <[email protected]>

Closes #1294 from yoonjs2/ZEPPELIN-1299 and squashes the following commits:

1d2591f [Jesang Yoon] Change all appearances 3.3.3 to 3.3.9 in documentation
5ac7de7 [Jesang Yoon] Change maven version from 3.3.3 to 3.3.9


Project: http://git-wip-us.apache.org/repos/asf/zeppelin/repo
Commit: http://git-wip-us.apache.org/repos/asf/zeppelin/commit/bccd5f93
Tree: http://git-wip-us.apache.org/repos/asf/zeppelin/tree/bccd5f93
Diff: http://git-wip-us.apache.org/repos/asf/zeppelin/diff/bccd5f93

Branch: refs/heads/master
Commit: bccd5f93c3228b15afdc5f0843dd727222032002
Parents: 46ae6fe
Author: Jesang Yoon <[email protected]>
Authored: Sun Aug 7 15:47:59 2016 +0900
Committer: Mina Lee <[email protected]>
Committed: Thu Aug 11 23:07:41 2016 +0200

----------------------------------------------------------------------
 docs/install/virtual_machine.md                         |  4 ++--
 scripts/vagrant/zeppelin-dev/roles/maven/tasks/main.yml | 10 +++++-----
 2 files changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/bccd5f93/docs/install/virtual_machine.md
----------------------------------------------------------------------
diff --git a/docs/install/virtual_machine.md b/docs/install/virtual_machine.md
index b4b9134..45aa00f 100644
--- a/docs/install/virtual_machine.md
+++ b/docs/install/virtual_machine.md
@@ -88,7 +88,7 @@ By default, Vagrant will share your project directory (the 
directory with the Va
 Running the following commands in the guest machine should display these 
expected versions:
 
 `node --version` should report *v0.12.7*
-`mvn --version` should report *Apache Maven 3.3.3* and *Java version: 1.7.0_85*
+`mvn --version` should report *Apache Maven 3.3.9* and *Java version: 1.7.0_85*
 
 The virtual machine consists of:
 
@@ -96,7 +96,7 @@ The virtual machine consists of:
  - Node.js 0.12.7
  - npm 2.11.3
  - ruby 1.9.3 + rake, make and bundler (only required if building jekyll 
documentation)
- - Maven 3.3.3
+ - Maven 3.3.9
  - Git
  - Unzip
  - libfontconfig to avoid phatomJs missing dependency issues

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/bccd5f93/scripts/vagrant/zeppelin-dev/roles/maven/tasks/main.yml
----------------------------------------------------------------------
diff --git a/scripts/vagrant/zeppelin-dev/roles/maven/tasks/main.yml 
b/scripts/vagrant/zeppelin-dev/roles/maven/tasks/main.yml
index e435aac..0e21e76 100644
--- a/scripts/vagrant/zeppelin-dev/roles/maven/tasks/main.yml
+++ b/scripts/vagrant/zeppelin-dev/roles/maven/tasks/main.yml
@@ -23,24 +23,24 @@
 
 
 - name: Call apache web service to find preferred maven download mirror
-  uri: 
url=http://www.apache.org/dyn/closer.cgi?path=maven/maven-3/3.3.3/binaries/apache-maven-3.3.3-bin.tar.gz&asjson=1
 return_content=yes
+  uri: 
url=http://www.apache.org/dyn/closer.cgi?path=maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.tar.gz&asjson=1
 return_content=yes
   register: webResponse
 
 #- debug: var=webResponse
 
 - name: download maven
   get_url: url="{{webResponse.json.preferred}}{{webResponse.json.path_info}}"
-           dest=/tmp/apache-maven-3.3.3-bin.tar.gz
+           dest=/tmp/apache-maven-3.3.9-bin.tar.gz
            mode=0440
            validate_certs=False
 
 - name: extract maven tgz
-  unarchive: src=/tmp/apache-maven-3.3.3-bin.tar.gz
+  unarchive: src=/tmp/apache-maven-3.3.9-bin.tar.gz
              dest=/usr/local/
              copy=no
-             creates=/usr/local/apache-maven-3.3.3
+             creates=/usr/local/apache-maven-3.3.9
 
 - name: create symlink to this maven version
-  file: src=/usr/local/apache-maven-3.3.3/bin/mvn
+  file: src=/usr/local/apache-maven-3.3.9/bin/mvn
         path=/usr/bin/mvn
         state=link

Reply via email to