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 <erikdw@...>
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`.
----
---