Re: How to build multiple webapps that share resources

2007-04-04 Thread franz see
not the intended recipient or a person responsible > for delivering this message to an intended recipient, please notify the > original sender immediately by e-mail or telephone, return the original > message to the original sender or to [EMAIL PROTECTED], and > destroy all copies

Re: How to build multiple webapps that share resources

2007-04-04 Thread Andrew Williams
make another module alongside webapp1 and webapp2 called, for example, webapp-resources and then depend on this jar module from both webapps. If you require to filter the resources then you need a more complicated solution, however :( Andy On 30 Mar 2007, at 14:29, Doug Tanner wrote: I am

Re: How to build multiple webapps that share resources

2007-03-30 Thread John J. Franey
the values are controlled in a single place, the parent pom. You will also have the ability to provide developer specific property values using a profile in the setting.xml file. Regards, John -- View this message in context: http://www.nabble.com/How-to-build-multiple-webapps-that-share

How to build multiple webapps that share resources

2007-03-30 Thread Doug Tanner
I am currently in the process of refactoring our code in order to switch from building with ant to maven. How can I share resources, such as property files, between multiple webapps? Current directory structure: Webapps -src -java -webapp1 -webapp2