Repository: incubator-zeppelin
Updated Branches:
  refs/heads/master a5e9d4410 -> 27163cbca


Update pom.xml

### What is this PR for?
improving pom.xml

### What type of PR is it
Improvement

### Todos
* [x] - Update pom.xml

### Is there a relevant Jira issue?
May not require issue

### How should this be tested?
I use ```mvn clean package -Pspark-1.4 -Phadoop-2.6 -DskipTests``` can cause 
the module Phoenix error and I think this should not appear. Reason about this 
issue is sqlline:sqlline:jar:1.1.8 is served from conjar repo. But 
sqlline:sqlline:jar:1.1.9 is served from maven repo. So add the dependency of 
sqlline1.1.9 can solve it. Of course, you can fix this issue by another way, 
but this way may be in common use.
http://mvnrepository.com/artifact/sqlline/sqlline/1.1.9

### Screenshots (if appropriate)
Before
`BUILD FAILURE`

When you add this dependency
After
```
[INFO] Zeppelin: Apache Phoenix Interpreter ............... SUCCESS [  2.497 s]
[INFO] Zeppelin: PostgreSQL interpreter ................... SUCCESS [  0.572 s]
[INFO] Zeppelin: Tajo interpreter ......................... SUCCESS [  0.557 s]
[INFO] Zeppelin: Flink .................................... SUCCESS [  4.695 s]
[INFO] Zeppelin: Apache Ignite interpreter ................ SUCCESS [  0.536 s]
[INFO] Zeppelin: Kylin interpreter ........................ SUCCESS [  0.520 s]
[INFO] Zeppelin: Lens interpreter ......................... SUCCESS [  1.592 s]
[INFO] Zeppelin: Cassandra ................................ SUCCESS [ 35.948 s]
[INFO] Zeppelin: Elasticsearch interpreter ................ SUCCESS [  1.323 s]
[INFO] Zeppelin: web Application .......................... SUCCESS [ 52.998 s]
[INFO] Zeppelin: Server ................................... SUCCESS [ 11.377 s]
[INFO] Zeppelin: Packaging distribution ................... SUCCESS [  1.054 s]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 03:03 min
[INFO] Finished at: 2016-01-14T14:53:26+08:00
[INFO] Final Memory: 160M/1060M
[INFO] ------------------------------------------------------------------------

```

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

Author: zhangminglei <[email protected]>

Closes #637 from hash-X/patch-2 and squashes the following commits:

40f2eca [zhangminglei] Update pom.xml


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

Branch: refs/heads/master
Commit: 27163cbca42bc147615484fcf2390c17b0653b94
Parents: a5e9d44
Author: zhangminglei <[email protected]>
Authored: Thu Jan 14 14:58:58 2016 +0800
Committer: Lee moon soo <[email protected]>
Committed: Fri Jan 15 08:22:54 2016 -0800

----------------------------------------------------------------------
 phoenix/pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/27163cbc/phoenix/pom.xml
----------------------------------------------------------------------
diff --git a/phoenix/pom.xml b/phoenix/pom.xml
index 3cca32d..efb1fc6 100644
--- a/phoenix/pom.xml
+++ b/phoenix/pom.xml
@@ -46,6 +46,12 @@
     </dependency>
 
     <dependency>
+      <groupId>sqlline</groupId>
+      <artifactId>sqlline</artifactId>
+      <version>1.1.9</version>
+    </dependency>  
+
+    <dependency>
       <groupId>org.apache.phoenix</groupId>
       <artifactId>phoenix-core</artifactId>
       <version>${phoenix.version}</version>

Reply via email to