I am finding a way how to copy any files to my web server using maven. I have a maven project which contains a sets of html, js, properties and configuration files.
I would like pack my stuff and deploy to repository. After that in another maven project I would like to unpack files from artifact, filtering resources and copy to the specifying folders on the server.
What is a best way to do it?
maven-dependency-plugin can unpack artifact but I didn't find how to use resource filtering in this case and how to specify several output directories.