I have a multi-module maven based project with the following module structure:
--
--A
pom.xml
--B
pom.xml
-pom.xml
I added a dependency in the parent .pom file. Now i want to use resources from that added dependency in the A module.
Is there a way to copy only external resources to the A module, using maven?
I tried using the maven-remote-resources-plugin for that, but it doesn't see the external resources.