i can understand if we have <parent>, <module>
tag, then it would be child pom. but not sure where to define the parent, child pom and how we can call in maven?
for e.g.,
My project current structure is
<dir>/src/resources/test.file
<dir>/src/assembly/descriptor.xml
<dir>/pom.xml
For now the pom file has antrun and assembly plugin where it will zip the files from resources dir as mentioned in descriptor.xml.
Now i am planning to add some documents in the dir and need to do seperate zip of config files.
<dir>/src/config/test.config
As assembly plugin is common for both the operations, planning to put that in parent pom and respective things in child pom.
But i am not sure in which folder i have to put the parent, child pom? how to call the parent, child pom etc...
Can someone plese help?