This is an automated email from the ASF dual-hosted git repository.
vavrtom pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-broker-j.git
The following commit(s) were added to refs/heads/main by this push:
new a38b4dd53e Revert "NO-JIRA: Replaced gnu by posix in tar long file
mode (assembly-plugin)" (#161)
a38b4dd53e is described below
commit a38b4dd53e22138ab2ceee32636870ada41d6f98
Author: vavrtom <[email protected]>
AuthorDate: Thu Nov 10 09:23:30 2022 +0100
Revert "NO-JIRA: Replaced gnu by posix in tar long file mode
(assembly-plugin)" (#161)
* Revert "NO-JIRA: Replaced gnu by posix in tar long file mode
(assembly-plugin) (#159)"
This reverts commit ac54906693e5a5326c369009d537a95134628966.
---
apache-qpid-broker-j/pom.xml | 12 ++++++++++--
doc/pom.xml | 6 +++++-
2 files changed, 15 insertions(+), 3 deletions(-)
diff --git a/apache-qpid-broker-j/pom.xml b/apache-qpid-broker-j/pom.xml
index e7ecf7f190..8991d67a59 100644
--- a/apache-qpid-broker-j/pom.xml
+++ b/apache-qpid-broker-j/pom.xml
@@ -54,7 +54,11 @@
<descriptors>
<descriptor>src/main/assembly/bin.xml</descriptor>
</descriptors>
- <tarLongFileMode>posix</tarLongFileMode>
+ <!-- 7-zip/mc truncates path to 100 characters in 'posix' mode
+ - https://sourceforge.net/p/sevenzip/bugs/2228/
+ - https://github.com/apache/qpid-broker-j/pull/161
+ 'gnu' value causes a packaging issue on OSes where the user
ID is greater than 2097151. -->
+ <tarLongFileMode>gnu</tarLongFileMode>
</configuration>
</execution>
</executions>
@@ -80,7 +84,11 @@
<descriptors>
<descriptor>src/main/assembly/src.xml</descriptor>
</descriptors>
- <tarLongFileMode>posix</tarLongFileMode>
+ <!-- 7-zip/mc truncates path to 100 characters in 'posix'
mode
+ - https://sourceforge.net/p/sevenzip/bugs/2228/
+ - https://github.com/apache/qpid-broker-j/pull/161
+ 'gnu' value causes a packaging issue on OSes where the
user ID is greater than 2097151. -->
+ <tarLongFileMode>gnu</tarLongFileMode>
</configuration>
</execution>
</executions>
diff --git a/doc/pom.xml b/doc/pom.xml
index 49d180ffa4..c6c704c9dc 100644
--- a/doc/pom.xml
+++ b/doc/pom.xml
@@ -176,7 +176,11 @@
<descriptors>
<descriptor>${project.basedir}/../src/main/assembly/html.xml</descriptor>
</descriptors>
- <tarLongFileMode>posix</tarLongFileMode>
+ <!-- 7-zip/mc truncates path to 100 characters in
'posix' mode
+ -
https://sourceforge.net/p/sevenzip/bugs/2228/
+ -
https://github.com/apache/qpid-broker-j/pull/161
+ 'gnu' value causes a packaging issue on OSes
where the user ID is greater than 2097151. -->
+ <tarLongFileMode>gnu</tarLongFileMode>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
<executions>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]