You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by jo...@apache.org on 2017/02/07 15:46:47 UTC

zeppelin git commit: [HOTFIX][MINOR] Change the scope of httpclient to runtime from test

Repository: zeppelin
Updated Branches:
  refs/heads/master 82fc4ba25 -> af3caf00a


[HOTFIX][MINOR] Change the scope of httpclient to runtime from test

### What is this PR for?
When IDE runs ZeppelinServer in debugging mode, it doesn't load httpclient because its scope is test but it needs zeppelin-zengine that zeppelin-server depends on. ZeppelinServer cannot run itself successfully while loading libraries.

### What type of PR is it?
[Bug Fix | Hot Fix]

### Todos
* [x] - Change the scope

### What is the Jira issue?
N/A

### How should this be tested?
Run ZeppelinServer in IntelliJ

### Screenshots (if appropriate)

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

Author: Jongyoul Lee <jo...@gmail.com>

Closes #1944 from jongyoul/hotfix/change-scope-of-zeppelin-server-pom and squashes the following commits:

b6dd68f [Jongyoul Lee] Remove httpcomponent dependency from zeppelin-server
c86393d [Jongyoul Lee] Change the scope of httpclient to runtime from test


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

Branch: refs/heads/master
Commit: af3caf00af1c6707928b1ba5b0aa783e220f57d6
Parents: 82fc4ba
Author: Jongyoul Lee <jo...@gmail.com>
Authored: Thu Feb 2 15:51:31 2017 +0900
Committer: Jongyoul Lee <jo...@apache.org>
Committed: Wed Feb 8 00:46:38 2017 +0900

----------------------------------------------------------------------
 zeppelin-server/pom.xml | 12 ------------
 1 file changed, 12 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/af3caf00/zeppelin-server/pom.xml
----------------------------------------------------------------------
diff --git a/zeppelin-server/pom.xml b/zeppelin-server/pom.xml
index ddfaa95..ac5cb2b 100644
--- a/zeppelin-server/pom.xml
+++ b/zeppelin-server/pom.xml
@@ -343,18 +343,6 @@
     </dependency>
 
     <dependency>
-      <groupId>org.apache.httpcomponents</groupId>
-      <artifactId>httpclient</artifactId>
-      <scope>test</scope>
-      <exclusions>
-        <exclusion>
-          <groupId>commons-codec</groupId>
-          <artifactId>commons-codec</artifactId>
-        </exclusion>
-      </exclusions>
-    </dependency>
-
-    <dependency>
       <groupId>org.seleniumhq.selenium</groupId>
       <artifactId>selenium-java</artifactId>
       <version>${selenium.java.version}</version>