I am writing a maven assembly descriptor, and one of the tasks is to load the tar file, unzip it before creating the final tarball from many components.
I cannot figure out how to save symbolic links from tar using the maven build plugin. Has anyone seen this problem before?
<assembly> <id>myassembly</id> <formats> <format>dir</format> </formats> <includeBaseDirectory>false</includeBaseDirectory> <dependencySets> <dependencySet> <useProjectArtifact>false</useProjectArtifact> <outputDirectory>.</outputDirectory> <unpack>true</unpack> </dependencySet> </dependencySets> </assembly>
source share