I am writting a maven assembly descriptor and one of the task is to download a tar file, unpack it before creating a final tarball out of many components.
I cant figure out how to preserve symlinks from the tar using the maven assembly plugin. Has anybody seen this issue 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>
Now everything is becoming better. I see both maven dependency plugin and assembly plugin correctly supporting symlinks. Following versions and definitions are used:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.10</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.5.4</version>
</plugin>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With