Re: how to copy resources while building war

2006-07-24 Thread Ivo Limmen
I think you should take a look at webResources of the WAR pluginhttp://maven.apache.org/plugins/maven-war-plugin/examples/adding-filtering-webresources.html . On 7/17/06, AK [EMAIL PROTECTED] wrote: Hi, I have a multimodule project, all modules' config properties are stored within each

Re: how to copy resources while building war

2006-07-18 Thread AK
Hi, I have config files stored inside modules, because these files are used to configure these modules. These configs are not used by the modules themselves (and are not packed inside jars), just by the their clients. If I have another web app or client app, I'll have to make these config

RE: how to copy resources while building war

2006-07-18 Thread Andrew-A . Davies
I believe that assembly plugin could be used. Also could run ant targets -Original Message- From: AK [mailto:[EMAIL PROTECTED] Sent: 18 July 2006 07:58 To: users@maven.apache.org Subject: Re: how to copy resources while building war Hi, I have config files stored inside modules

how to copy resources while building war

2006-07-17 Thread AK
Hi, I have a multimodule project, all modules' config properties are stored within each module's directory. For example, kernel module has its props in kernel/config folder. I have a web module, which uses all other modules, and all their properties must be stored within web-inf folder as

Re: how to copy resources while building war

2006-07-17 Thread dcabasson
module references them. If I make kernel/config a resource folder, config will be put inside kernel.jar, and won't be available for web app. So I have to copy the configs manually, which is annoying. -- View this message in context: http://www.nabble.com/how-to-copy-resources-while

RE: how to copy resources while building war

2006-07-17 Thread Maximilian . Antoni
not shure about how to do the overlaying thing with a real module. Happy compiling Max -Original Message- From: AK [mailto:[EMAIL PROTECTED] Sent: 17 July 2006 12:51 To: users@maven.apache.org Subject: how to copy resources while building war Hi, I have a multimodule project, all