You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@storm.apache.org by erikdw <gi...@git.apache.org> on 2018/01/10 07:30:27 UTC

[GitHub] storm pull request #2511: [STORM-2893] fix storm distribution build by using...

GitHub user erikdw opened a pull request:

    https://github.com/apache/storm/pull/2511

    [STORM-2893] fix storm distribution build by using POSIX tar

    There is a known issue with the maven-assembly-plugin version 2.5+ where it fails with errors like the following:
    
    ```
    [ERROR] Failed to execute goal org.apache.maven.plugins:maven-assembly-plugin:2.6:single (default) on project final-package: Execution default of goal org.apache.maven.plugins:maven-assembly-plugin:2.6:single failed: group id '906175167' is too big ( > 2097151 ). Use STAR or POSIX extensions to overcome this limit -> [Help 1]
    ```
    
    This became an issue with change 84a4314d96b9e4e377a3d5d81d0a042d96a0625e when the maven-assembly-plugin
    was upgraded from version 2.2.2 to 2.6, as inherited from the apache pom version 18.
    
    To fix this we set the assembly plugin's `tarLongFileMode` configuration setting to `posix`.

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

    $ git pull https://github.com/erikdw/storm STORM-2893

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

    https://github.com/apache/storm/pull/2511.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 #2511
    
----
commit 08d7d8db51df3b2620461f7167cae787c9cf96dc
Author: Erik Weathers <er...@...>
Date:   2018-01-10T07:18:48Z

    [STORM-2893] fix storm distribution build by using POSIX tar
    
    There is a known issue with the maven-assembly-plugin version 2.5+ where it fails with errors like the following:
    
    ```
    [ERROR] Failed to execute goal org.apache.maven.plugins:maven-assembly-plugin:2.6:single (default) on project final-package: Execution default of goal org.apache.maven.plugins:maven-assembly-plugin:2.6:single failed: group id '906175167' is too big ( > 2097151 ). Use STAR or POSIX extensions to overcome this limit -> [Help 1]
    ```
    
    This became an issue with change 84a4314d96b9e4e377a3d5d81d0a042d96a0625e when the maven-assembly-plugin
    was upgraded from version 2.2.2 to 2.6, as inherited from the apache pom version 18.
    
    To fix this we set the assembly plugin's `tarLongFileMode` configuration setting to `posix`.

----


---

[GitHub] storm pull request #2511: [STORM-2893] fix storm distribution build by using...

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

    https://github.com/apache/storm/pull/2511


---

[GitHub] storm issue #2511: [STORM-2893] fix storm distribution build by using POSIX ...

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

    https://github.com/apache/storm/pull/2511
  
    @revans2 & @srdo : thx for the quick review-and-merge!


---

[GitHub] storm issue #2511: [STORM-2893] fix storm distribution build by using POSIX ...

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

    https://github.com/apache/storm/pull/2511
  
    +1. Thanks @erikdw, merged to master.


---