plamentotev commented on issue #4: [MASSEMBLY-617] add ability to give a fileSuffix to a FileSet URL: https://github.com/apache/maven-assembly-plugin/pull/4#issuecomment-401673740 No. `InputStreamTransformer` modifies the content of the file (like changing the line ending). `FileMapper` changes the file name based on some logic (so it is actually a file name mapper). You need to make a similar change to one already did. But instead of String you need to configure an array of [`org.codehaus.plexus.components.io.filemappers.FileMapper`](https://github.com/codehaus-plexus/plexus-io/blob/master/src/main/java/org/codehaus/plexus/components/io/filemappers/FileMapper.java). And after that you need to propagate the array to `AbstractPlexusIoResourceCollection`. I don't think `BaseFileSet` accepts `FileMapper[]` so I think you need to change it as well. Hope this helps.
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
