Re: [m2] How to exclude a class from WEB-INF/classes using war plugin

2006-06-15 Thread Mark Reynolds
Ok, that works. Thanks. javed mandary wrote: Max is right use the exludes configuration with the compiler plugin please see http://maven.apache.org/plugins/maven-compiler-plugin/compile-mojo.html , this will filter out undesired classes ;) . cheers, Javed On 6/15/06, Max Cooper <[EMAIL PROTE

Re: [m2] How to exclude a class from WEB-INF/classes using war plugin

2006-06-14 Thread javed mandary
Max is right use the exludes configuration with the compiler plugin please see http://maven.apache.org/plugins/maven-compiler-plugin/compile-mojo.html , this will filter out undesired classes ;) . cheers, Javed On 6/15/06, Max Cooper <[EMAIL PROTECTED]> wrote: Since it is a class file (as op

Re: [m2] How to exclude a class from WEB-INF/classes using war plugin

2006-06-14 Thread Max Cooper
Since it is a class file (as opposed to src/main/webapp content), I suspect that you need to exclude it from the compile, rather than trying to exclude it from the webapp. -Max Mark Reynolds wrote: Just wondering if anyone knows the answer to this. Not sure if it is a bug or if I am just not

Re: [m2] How to exclude a class from WEB-INF/classes using war plugin

2006-06-14 Thread Mark Reynolds
Just wondering if anyone knows the answer to this. Not sure if it is a bug or if I am just not doing it right. Thanks. -- Mark Reynolds Mark Reynolds wrote: I have a single class I want to exclude from the my WAR file. It is named Install.class and is in the root package (no package). I hav

[m2] How to exclude a class from WEB-INF/classes using war plugin

2006-06-13 Thread Mark Reynolds
I have a single class I want to exclude from the my WAR file. It is named Installer.class and is in the root package (no package). I have tried this: maven-war-plugin **/Install* and this: maven-war-plugin **/Install* but ne