I have 4 web applications. But images, css, javascripts are the same.
When I do changes in one project after I need propagate changes to all projects.
What the best way – create common jar only with resoures or use something similar to links in SVN or else?
Thanks.
I have 4 web applications. But images, css, javascripts are the same. When I
Share
With the maven resources plugin, you can specify a copy-resources goal that will copy the common resources into the specified projects prior to building the war files.
I’ve also seen the use of a common directory that is links (
ln -s) during the build. This avoids the space and time load of creating physical copies of the resources.