I am into some scenario that is, read a properties file, and based on the value of property file create folder and copy resources from some directory to it.
properties-file: xyz.properties
CLIENTLIST=A,B
I want to perform following steps in maven.
1. From above properties file pom should read the property.
2. In loop I want to create folders by name A and B.
3. After creating folder i want to copy some resources into it.
ex: after creating folder A , want to copy some resource files from x/y/z directory.
Is it possible in maven ?
I did this using couple of plugins,
I have used properties read, iterator and copy-resources plugin to get what I needed.