Github user Leemoonsoo commented on the issue:

    https://github.com/apache/zeppelin/pull/1944
  
    I don't have special configuration for Intellij but does not have any 
problem after Helium.
    
    If you run following command, you'll see all dependencies of 
`zeppelin-server` module
    ```
    mvn -DskipTests -Pspark-2.1 -Pscala-2.11 -Phadoop-2.6 -Pyarn -Ppyspark -pl 
'zeppelin-interpreter,zeppelin-zengine,zeppelin-server' package dependency:tree
    ```
    
    And there're `httpclient` dependency in `compile` scope. For example
    
    ```
    [INFO] org.apache.zeppelin:zeppelin-interpreter:jar:0.8.0-SNAPSHOT
    [INFO] +- org.apache.thrift:libthrift:jar:0.9.2:compile
    [INFO] |  +- org.apache.httpcomponents:httpclient:jar:4.3.6:compile
    [INFO] |  |  +- commons-logging:commons-logging:jar:1.1.1:compile
    [INFO] |  |  \- commons-codec:commons-codec:jar:1.5:compile
    [INFO] |  \- org.apache.httpcomponents:httpcore:jar:4.3.3:compile
    ```
    
    and
    
    ```
    [INFO] +- org.apache.maven.wagon:wagon-http:jar:1.0:compile
    [INFO] |  \- org.apache.maven.wagon:wagon-http-shared:jar:1.0:compile
    [INFO] |     +- commons-httpclient:commons-httpclient:jar:3.1:compile
    [INFO] |     +- commons-io:commons-io:jar:2.4:compile
    [INFO] |     \- org.jsoup:jsoup:jar:1.6.1:compile
    ```
    
    ```
    [INFO] +- org.apache.httpcomponents:httpclient:jar:4.3.6:compile
    [INFO] |  +- org.apache.httpcomponents:httpcore:jar:4.3.3:compile
    [INFO] |  \- commons-codec:commons-codec:jar:1.5:compile
    ```
    
    Yes, `httpclient` is not compile scope dependency in `zeppelin-server` 
module. But it's compile scope dependency in `zeppelin-interpreter` and 
`zeppelin-zengine` module. And `zeppelin-server` have `zeppelin-interpreter` 
and `zeppelin-zengine` as a dependency. So `zeppelin-server` should have 
`httpclient` in it's compile scope dependency when try to run in intellij.
    
    What do you think?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to