You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by stsc-pentasys <gi...@git.apache.org> on 2016/07/31 13:26:59 UTC

[GitHub] spark pull request #14429: [SPARK-16770][BUILD] Fix JLine dependency managem...

GitHub user stsc-pentasys opened a pull request:

    https://github.com/apache/spark/pull/14429

    [SPARK-16770][BUILD] Fix JLine dependency management and version (Sca\u2026

    ## What changes were proposed in this pull request?
    As of Scala 2.11.x there is no longer a org.scala-lang:jline version aligned to the scala version itself. Scala console now uses the plain jline:jline module. Spark's  dependency management did not reflect this change properly, causing Maven to pull in Jline via transitive dependency. Unfortunately Jline 2.12 contained a minor but very annoying bug rendering the shell almost useless for developers with german keyboard layout. This request contains the following chages:
    - Exclude transitive dependency 'jline:jline' from hive-exec module
    - Remove global properties 'jline.version' and 'jline.groupId'
    - Add both properties and dependency to 'scala-2.11' profile
    - Add explicit dependency on 'jline:jline' to  module 'spark-repl'
    
    ## How was this patch tested?
    - Running mvn dependency:tree and checking for correct Jline version 2.12.1
    - Running full builds with assembly and checking for jline-2.12.1.jar in 'lib' folder of generated tarball


You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/stsc-pentasys/spark SPARK-16770

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/spark/pull/14429.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #14429
    
----
commit e4bf237ed43461897beb00211de2d10321fe40b1
Author: Stefan Schulze <st...@pentasys.de>
Date:   2016-07-31T12:59:55Z

    [SPARK-16770][BUILD] Fix JLine dependency management and version (Scala 2.11.x)

----


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #14429: [SPARK-16770][BUILD] Fix JLine dependency management and...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/14429
  
    **[Test build #63185 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/63185/consoleFull)** for PR 14429 at commit [`35cc6c3`](https://github.com/apache/spark/commit/35cc6c3f62ff9895f2786df73c56f46ba890497a).


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #14429: [SPARK-16770][BUILD] Fix JLine dependency management and...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on the issue:

    https://github.com/apache/spark/pull/14429
  
    This will fail to build because the deps/* files haven't been updated. The dev/test-dependencies.sh script can do this.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #14429: [SPARK-16770][BUILD] Fix JLine dependency managem...

Posted by stsc-pentasys <gi...@git.apache.org>.
Github user stsc-pentasys commented on a diff in the pull request:

    https://github.com/apache/spark/pull/14429#discussion_r72905334
  
    --- Diff: pom.xml ---
    @@ -2645,7 +2647,18 @@
           <properties>
             <scala.version>2.11.8</scala.version>
             <scala.binary.version>2.11</scala.binary.version>
    +        <jline.version>2.12.1</jline.version>
    +        <jline.groupid>jline</jline.groupid>
           </properties>
    +      <dependencyManagement>
    --- End diff --
    
    I just aligned it with the profile for scala 2.10.x, And from my point of view it works. Includes the right Jline version in the delivered tarball.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #14429: [SPARK-16770][BUILD] Fix JLine dependency management and...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/14429
  
    Merged build finished. Test PASSed.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #14429: [SPARK-16770][BUILD] Fix JLine dependency managem...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on a diff in the pull request:

    https://github.com/apache/spark/pull/14429#discussion_r72905166
  
    --- Diff: pom.xml ---
    @@ -2645,7 +2647,18 @@
           <properties>
             <scala.version>2.11.8</scala.version>
             <scala.binary.version>2.11</scala.binary.version>
    +        <jline.version>2.12.1</jline.version>
    +        <jline.groupid>jline</jline.groupid>
           </properties>
    +      <dependencyManagement>
    --- End diff --
    
    You've added a new `dependencyManagement` section which won't work. Add to the existing one.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #14429: [SPARK-16770][BUILD] Fix JLine dependency managem...

Posted by stsc-pentasys <gi...@git.apache.org>.
Github user stsc-pentasys commented on a diff in the pull request:

    https://github.com/apache/spark/pull/14429#discussion_r72905284
  
    --- Diff: pom.xml ---
    @@ -2645,7 +2647,18 @@
           <properties>
             <scala.version>2.11.8</scala.version>
             <scala.binary.version>2.11</scala.binary.version>
    +        <jline.version>2.12.1</jline.version>
    +        <jline.groupid>jline</jline.groupid>
    --- End diff --
    
    See above - provides the correct properties for Scala 2.11.8.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #14429: [SPARK-16770][BUILD] Fix JLine dependency management and...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/14429
  
    **[Test build #63185 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/63185/consoleFull)** for PR 14429 at commit [`35cc6c3`](https://github.com/apache/spark/commit/35cc6c3f62ff9895f2786df73c56f46ba890497a).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #14429: [SPARK-16770][BUILD] Fix JLine dependency managem...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on a diff in the pull request:

    https://github.com/apache/spark/pull/14429#discussion_r72905169
  
    --- Diff: pom.xml ---
    @@ -2645,7 +2647,18 @@
           <properties>
             <scala.version>2.11.8</scala.version>
             <scala.binary.version>2.11</scala.binary.version>
    +        <jline.version>2.12.1</jline.version>
    +        <jline.groupid>jline</jline.groupid>
    --- End diff --
    
    What's the point of this?


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #14429: [SPARK-16770][BUILD] Fix JLine dependency management and...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/14429
  
    **[Test build #63184 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/63184/consoleFull)** for PR 14429 at commit [`35cc6c3`](https://github.com/apache/spark/commit/35cc6c3f62ff9895f2786df73c56f46ba890497a).
     * This patch **fails Spark unit tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #14429: [SPARK-16770][BUILD] Fix JLine dependency management and...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/14429
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/63184/
    Test FAILed.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #14429: [SPARK-16770][BUILD] Fix JLine dependency management and...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/14429
  
    Can one of the admins verify this patch?


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #14429: [SPARK-16770][BUILD] Fix JLine dependency management and...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/14429
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/63185/
    Test PASSed.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #14429: [SPARK-16770][BUILD] Fix JLine dependency management and...

Posted by stsc-pentasys <gi...@git.apache.org>.
Github user stsc-pentasys commented on the issue:

    https://github.com/apache/spark/pull/14429
  
    That's of course the cleanest solution. 


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #14429: [SPARK-16770][BUILD] Fix JLine dependency management and...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on the issue:

    https://github.com/apache/spark/pull/14429
  
    Yep that LGTM


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #14429: [SPARK-16770][BUILD] Fix JLine dependency managem...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on a diff in the pull request:

    https://github.com/apache/spark/pull/14429#discussion_r72908317
  
    --- Diff: pom.xml ---
    @@ -2645,7 +2647,18 @@
           <properties>
             <scala.version>2.11.8</scala.version>
             <scala.binary.version>2.11</scala.binary.version>
    +        <jline.version>2.12.1</jline.version>
    +        <jline.groupid>jline</jline.groupid>
    --- End diff --
    
    OK, I think I understand this a little better, but, `repl/pom.xml` no longer needs to manage the jline dependency _only_ for Scala 2.10, right? that can be removed, because it has to be managed (version and group) for both Scala versions.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #14429: [SPARK-16770][BUILD] Fix JLine dependency management and...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/14429
  
    **[Test build #63184 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/63184/consoleFull)** for PR 14429 at commit [`35cc6c3`](https://github.com/apache/spark/commit/35cc6c3f62ff9895f2786df73c56f46ba890497a).


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #14429: [SPARK-16770][BUILD] Fix JLine dependency managem...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on a diff in the pull request:

    https://github.com/apache/spark/pull/14429#discussion_r72908216
  
    --- Diff: pom.xml ---
    @@ -2645,7 +2647,18 @@
           <properties>
             <scala.version>2.11.8</scala.version>
             <scala.binary.version>2.11</scala.binary.version>
    +        <jline.version>2.12.1</jline.version>
    +        <jline.groupid>jline</jline.groupid>
    --- End diff --
    
    It sounds like this property is no longer even needed? I don't see that it's modified anywhere from "jline"


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #14429: [SPARK-16770][BUILD] Fix JLine dependency managem...

Posted by stsc-pentasys <gi...@git.apache.org>.
Github user stsc-pentasys commented on a diff in the pull request:

    https://github.com/apache/spark/pull/14429#discussion_r72905275
  
    --- Diff: pom.xml ---
    @@ -1428,6 +1426,10 @@
                 <groupId>org.codehaus.groovy</groupId>
                 <artifactId>groovy-all</artifactId>
               </exclusion>
    +          <exclusion>
    --- End diff --
    
    Both property values are valid only for scala 2.10.x, 2.11.x does no longer provide or use org.scala-lang:jline. If you want  to keep it, the values should reflect the default scala version which uses jline:jline:2.12.1.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #14429: [SPARK-16770][BUILD] Fix JLine dependency managem...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on a diff in the pull request:

    https://github.com/apache/spark/pull/14429#discussion_r72905172
  
    --- Diff: pom.xml ---
    @@ -1428,6 +1426,10 @@
                 <groupId>org.codehaus.groovy</groupId>
                 <artifactId>groovy-all</artifactId>
               </exclusion>
    +          <exclusion>
    --- End diff --
    
    You don't need to exclude it, usually. Is this to make the SBT happy?


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #14429: [SPARK-16770][BUILD] Fix JLine dependency management and...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on the issue:

    https://github.com/apache/spark/pull/14429
  
    Merged to master/2.0


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #14429: [SPARK-16770][BUILD] Fix JLine dependency management and...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on the issue:

    https://github.com/apache/spark/pull/14429
  
    OK @stsc-pentasys I think I'm on board with this after I reminded myself of how it works. One last suggestion. It seems like this should be in `dependencyManagment` outside of any profile:
    
    ```
              <dependency>
                <groupId>${jline.groupid}</groupId>
                <artifactId>jline</artifactId>
                <version>${jline.version}</version>
              </dependency>
    ```
    
    That much is constant. It's the version and group that vary with Scala, and the profiles already set those.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #14429: [SPARK-16770][BUILD] Fix JLine dependency management and...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on the issue:

    https://github.com/apache/spark/pull/14429
  
    Jenkins test this please


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #14429: [SPARK-16770][BUILD] Fix JLine dependency managem...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on a diff in the pull request:

    https://github.com/apache/spark/pull/14429#discussion_r72908200
  
    --- Diff: pom.xml ---
    @@ -1428,6 +1426,10 @@
                 <groupId>org.codehaus.groovy</groupId>
                 <artifactId>groovy-all</artifactId>
               </exclusion>
    +          <exclusion>
    --- End diff --
    
    I see, hive-exec pulls this in? then it's fine to exclude, sure. Sounds like it should have been there before if so, so just checking that this is required now.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #14429: [SPARK-16770][BUILD] Fix JLine dependency managem...

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/spark/pull/14429


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #14429: [SPARK-16770][BUILD] Fix JLine dependency management and...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/14429
  
    Merged build finished. Test FAILed.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org