I have a text file containing a list of files in my build. When building with maven, after the compile goal, I need to create a folder and copy the files mentioned in the text file (along with the folder structure in their respective projects) to a new folder within the build that will be created as part of build time. This folder will then be used by an assembly descriptor to create a distributable tar file.
I am not much familiar with maven. Is there any feature in maven that I can use to accompolish this? Or should I create some script that will be called by maven as a part of one of it's goals to copy the files?