You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by bz...@apache.org on 2016/11/22 08:44:42 UTC

zeppelin git commit: [ZEPPELIN-1689] enable Power architecture

Repository: zeppelin
Updated Branches:
  refs/heads/master de4049725 -> 0bcbfb922


[ZEPPELIN-1689] enable Power architecture

### What is this PR for?
A few sentences describing the overall goals of the pull request's commits.

this patch is platform independent and should not effect Intel architecture. We are simply upgrading the version of fronend-maven-plugin, nodejs, phantomjs-launcher to versions that are supported by Power architecture as well.

### What type of PR is it?
[ Feature ]

### Todos
* [ ] - Task

### What is the Jira issue?

https://issues.apache.org/jira/browse/ZEPPELIN-1689

### How should this be tested?
should test on x86 for any regression, highly unlikely.
OpenPOWER foundation team has already verified the patch on Power as part of Apache Bigtop project.

### Screenshots (if appropriate)

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

Author: amir sanjar <af...@gmail.com>

Closes #1666 from asanjar/master and squashes the following commits:

2f92845 [amir sanjar] ZEPPELIN-1689: enable Power architecture


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

Branch: refs/heads/master
Commit: 0bcbfb922ed35940f36765758f6615c99f5afa7d
Parents: de40497
Author: amir sanjar <af...@gmail.com>
Authored: Mon Nov 21 12:12:47 2016 -0600
Committer: Alexander Bezzubov <bz...@apache.org>
Committed: Tue Nov 22 09:44:35 2016 +0100

----------------------------------------------------------------------
 zeppelin-web/package.json | 2 +-
 zeppelin-web/pom.xml      | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/0bcbfb92/zeppelin-web/package.json
----------------------------------------------------------------------
diff --git a/zeppelin-web/package.json b/zeppelin-web/package.json
index 73a374f..fc51573 100644
--- a/zeppelin-web/package.json
+++ b/zeppelin-web/package.json
@@ -36,7 +36,7 @@
     "karma": "~0.12.23",
     "karma-coverage": "^0.5.1",
     "karma-jasmine": "~0.1.5",
-    "karma-phantomjs-launcher": "~0.1.4",
+    "karma-phantomjs-launcher": "~1.0.0",
     "load-grunt-tasks": "^0.4.0",
     "time-grunt": "^0.3.1"
   },

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/0bcbfb92/zeppelin-web/pom.xml
----------------------------------------------------------------------
diff --git a/zeppelin-web/pom.xml b/zeppelin-web/pom.xml
index 8e7f7cd..e5dee60 100644
--- a/zeppelin-web/pom.xml
+++ b/zeppelin-web/pom.xml
@@ -90,7 +90,7 @@
       <plugin>
         <groupId>com.github.eirslett</groupId>
         <artifactId>frontend-maven-plugin</artifactId>
-        <version>0.0.25</version>
+        <version>1.1</version>
         <executions>
 
           <execution>
@@ -99,7 +99,7 @@
               <goal>install-node-and-npm</goal>
             </goals>
             <configuration>
-              <nodeVersion>v0.12.13</nodeVersion>
+              <nodeVersion>v4.4.7</nodeVersion>
               <npmVersion>2.15.0</npmVersion>
             </configuration>
           </execution>