Currently, maven-assembly-plugin allows only pre-defined output archive formats, such as .zip
, tar.gz
. The docs do not mention straightforward configuration to create --rsyncable gzip
.
So far, I've gotten as far as maven-archiver
should be configured, however the docs are rather scarce.
Just wondering, anyone already explored this?
Update: Maven-archiver uses org.codehaus.plexus.archiver.gzip, which uses java.util.zip.GZIPOutputStream, which is a standard impl of zip, expectedly without --rsyncable support.
Looks like the most feasible option is to search for alternative zip implementation and promote it to plexus guys.