"mvn site assembly:assembly" produced a warning about too long files, so I set to use "gnu" mode instead as found on a maven guide.
https://github.com/keedio/buildoop/issues/86 http://maven.apache.org/plugins/maven-assembly-plugin/assembly-mojo.html#tarLongFileMode https://maven.apache.org/guides/mini/guide-default-execution-ids.html Project: http://git-wip-us.apache.org/repos/asf/logging-log4cxx/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4cxx/commit/22e15bd2 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4cxx/tree/22e15bd2 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4cxx/diff/22e15bd2 Branch: refs/heads/master Commit: 22e15bd2198aedd4fe3f1c2954c1624ed54bc8b5 Parents: 7942ffb Author: Thorsten Schöning <[email protected]> Authored: Thu Mar 24 17:05:02 2016 +0000 Committer: Thorsten Schöning <[email protected]> Committed: Thu Mar 24 17:05:02 2016 +0000 ---------------------------------------------------------------------- pom.xml | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4cxx/blob/22e15bd2/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 9b5e690..f3cc2ed 100644 --- a/pom.xml +++ b/pom.xml @@ -282,6 +282,7 @@ <descriptor>src/assembly/source.xml</descriptor> </descriptors> <appendAssemblyId>false</appendAssemblyId> + <tarLongFileMode>gnu</tarLongFileMode> </configuration> <executions> <execution>
