The maven plugin works very slow for me. In my project the webapp folder has nearly 15000 small files (images, jsp, css, etc). When I assemble it with the maven, it first copies all files to the target/myProject-1.0.0
directory, then builds myProject-1.0.0.war
file from it. The copy process takes 10 minutes, building the .war
takes 2 minutes.
As I see the build could be much faster if the .war
file will be assembled straight from the webapp folder. Is it possible to do?