I'm trying when I execute mvn package from the parent, the resources files that are in child module, will be copy to a specific directory of the parent module.
Structure of the project:
-Parent
--ModuleResources
Example:
ModuleResources
src/main/resources/
package1.file.xml
package2.file2.jsp
package3.file3.properties
ParentModule
src/main/parentResources/ < I want copy resources here.
I am newbie working with maven.
Thank you.