elharo opened a new issue, #1349:
URL: https://github.com/apache/maven-assembly-plugin/issues/1349
### Affected version
HEAD
### Bug description
resolve the FIXME one way or another
```
@Override
public void finalizeArchiveCreation(final Archiver archiver) {
// this will prompt the isSelected() call, below, for all resources
added to the archive.
// FIXME: This needs to be corrected in the AbstractArchiver, where
// runArchiveFinalizers() is called before regular resources are
added...
// which is done because the manifest needs to be added first, and
the
// manifest-creation component is a finalizer in the assembly
plugin...
for (final ResourceIterator it = archiver.getResources();
it.hasNext(); ) {
it.next();
}
addToArchive(archiver);
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]