In a custom Maven plugin, I add a file as resource by using the addResource
of MavenProject
.
This works well for JAR projects, but for EARs, I see that the relevant file is copied to target/classes
and then ignored. It is not present in the EAR.
There is an earSourceDirectory property which I can probably use to "trick" Maven by setting it to target/classes
but it seems like the wrong way.
How can I handle generated resources that should be packed into an EAR?