I find a way to copy any files to my web server using maven. I have a maven project that contains sets of html, js, properties and configuration files.
I would like to pack things and deploy them to the repository. After that, in another maven project, I would like to unzip the files from the artifact, filter the resources and copy them to the specified folders on the server.
What is the best way to do this?
maven-dependency-plugin can unpack the artifact, but I have not found how to use resource filtering in this case and how to specify multiple output directories.
maven-2 maven-plugin filtering
eugenn
source share