Is there any way to share resources between modules of a parent project in Maven? For example, I would like to specify one log4j.properties file for all the modules in a mul
I managed it to work like this:
I create a project/assembly/test/resources/META-INF/persistence.xml file, and add this to my pom.xml:
org.apache.maven.plugins maven-resources-plugin copy-test-persistence-xml-resources process-test-sources copy-resources src/ ${project.parent.basedir}/assembly/ true