You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by sr...@apache.org on 2018/01/12 19:40:07 UTC

[1/2] storm git commit: [STORM-2893] fix storm distribution build by using POSIX tar

Repository: storm
Updated Branches:
  refs/heads/master 6d43128de -> bdcfb5fe2


[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`.


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

Branch: refs/heads/master
Commit: 08d7d8db51df3b2620461f7167cae787c9cf96dc
Parents: 466a7ad
Author: Erik Weathers <er...@gmail.com>
Authored: Tue Jan 9 23:18:48 2018 -0800
Committer: Erik Weathers <er...@gmail.com>
Committed: Tue Jan 9 23:20:02 2018 -0800

----------------------------------------------------------------------
 storm-dist/binary/final-package/pom.xml | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/08d7d8db/storm-dist/binary/final-package/pom.xml
----------------------------------------------------------------------
diff --git a/storm-dist/binary/final-package/pom.xml b/storm-dist/binary/final-package/pom.xml
index ef3235c..71a4647 100644
--- a/storm-dist/binary/final-package/pom.xml
+++ b/storm-dist/binary/final-package/pom.xml
@@ -54,6 +54,7 @@
                 </executions>
                 <configuration>
                     <attach>true</attach>
+                    <tarLongFileMode>posix</tarLongFileMode>
                     <runOnlyAtExecutionRoot>false</runOnlyAtExecutionRoot>
                     <descriptors>
                         <descriptor>${project.basedir}/src/main/assembly/binary.xml</descriptor>


[2/2] storm git commit: Merge branch 'STORM-2893' of https://github.com/erikdw/storm into asfgit-master

Posted by sr...@apache.org.
Merge branch 'STORM-2893' of https://github.com/erikdw/storm into asfgit-master


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

Branch: refs/heads/master
Commit: bdcfb5fe23efed0bb594748b1ff91ea3b35fbcda
Parents: 6d43128 08d7d8d
Author: Stig Rohde Døssing <sr...@apache.org>
Authored: Fri Jan 12 20:39:16 2018 +0100
Committer: Stig Rohde Døssing <sr...@apache.org>
Committed: Fri Jan 12 20:39:16 2018 +0100

----------------------------------------------------------------------
 storm-dist/binary/final-package/pom.xml | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------