Including jsps in war from external dependency

2006-03-26 Thread Jake Meier
I'm tying to set up a maven project in such a way that I can have a base set of jsp, css, javascript, etc files located in 1 project and have them included by various other projects. The goal is to have multiple war files being built with generally the same jsps, css, etc (without making

Re: Including jsps in war from external dependency

2006-03-26 Thread Kevin Galligan
Its built into the war plugin. Instead of packaging your included files as a jar, package them as a war, and make that a dependency in your project. We use this extensively in our build. dependency groupIdyourgroup/groupId artifactIdcommonwar/artifactId version1.0-SNAPSHOT/version