Hello,
I use org.apache.maven.plugins:maven-assembly-plugin:2.2.1:single to
generate a tar.gz file. This archive contains long file name, so I valued
the tarLongFileMode option to "gnu".
When I run this goal on Windows and untar the archive on HP-UX with the
command pax -rf toto.tar -x ustar, I've got a "@LongLink" file, but the file
specified in it *exist*.
When I run this goal on Linux and untar the archive on HP-UX with the
command pax -rf toto.tar -x ustar, I've got a "@LongLink" file, but the file
specified in it *does not exist*.
Here the configuration :
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<goals>
<goal>single</goal>
</goals>
<configuration>
<tarLongFileMode>gnu</tarLongFileMode>
</configuration>
</execution>
</executions>
</plugin>
Have you any idea ?
Thanks.
Rémy
--
View this message in context:
http://maven.40175.n5.nabble.com/maven-assembly-plugin-tp4981554p4981554.html
Sent from the Maven - Users mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]