I have a tycho build with a pom-first module and other regular manifest-first modules. As explained in https://wiki.eclipse.org/Tycho/How_Tos/Dependency_on_pom-first_artifacts , I have to first compile pom-first modules and then manifest-first modules.
My problem is that when I try to produce the aggregated report (using the report-aggregate goal), it completely ignores my pom-first module (even if it is in the <dependencies> section of the pom file that runs the report-aggregate goal).
I think this is because the pom-first module has been built in a previous phase and then is not part of the build reactor of the other maven modules.
How can I do to fix that?
Thank you.