Trying to understand maven readonly parameters

2006-04-10 Thread Raymond Domingo
Hello, Can anyone explain why maven-compiler-plugin setting compileSourceRoots is readonly ? Isn't it a pain in the as you have to use the build-helper-maven-plugin to work around this problem or am I missing something ? raymond

Re: Re: How to put a Jar in my War

2006-04-06 Thread Raymond Domingo
Hello Mang Jun Lau, Thank you for responsing, but it still isn't working :( Currently I have this in my pom.xml: plugin artifactIdmaven-war-plugin/artifactId configuration warSourceDirectoryweb/warSourceDirectory

How to put a Jar in my War

2006-04-06 Thread Raymond Domingo
Hello Mang Jun Lau, Thank you for responsing, but it still isn't working :( Currently I have this in my pom.xml: plugin artifactIdmaven-war-plugin/artifactId configuration warSourceDirectoryweb/warSourceDirectory

Re: How to put a Jar in my War

2006-04-06 Thread Raymond Domingo
Hi Piéroni Raphaël, Thank you for responding, it might be a solution... So if I understand you correctly I don't need to change my dir structure to do this, currently we have one large project which should remain this way for now. in /pom.xml (root pom) I will use packagingjar/packaging this

RE: How to put a Jar in my War

2006-04-06 Thread Raymond Domingo
you have a parameter webXml (note the uppercase X) Hermod -Original Message- From: Piéroni Raphaël [mailto:[EMAIL PROTECTED] Sent: Thursday, April 06, 2006 10:25 AM To: Maven Users List Subject: Re: How to put a Jar in my War Hello Raymond, Inline answer 2006/4/6, Raymond

RE: How to put a Jar in my War

2006-04-06 Thread Raymond Domingo
you have a parameter webXml (note the uppercase X) Hermod -Original Message- From: Piéroni Raphaël [mailto:[EMAIL PROTECTED] Sent: Thursday, April 06, 2006 10:25 AM To: Maven Users List Subject: Re: How to put a Jar in my War Hello Raymond, Inline answer 2006/4/6, Raymond

How to put a Jar in my War

2006-04-05 Thread Raymond Domingo
Hello all, Can any one please explain to me how I can add my Jar file to my War file... it seems such an easy thing to do... So currently I have an assembly which create a jar file (I like this) I also can create a second assembly creating a zip file (looks good) But if I change the format of

maven-war-plugin howto add files to WEB-INF

2006-03-28 Thread Raymond Domingo
directoryzoo/directory /resource But this create a WEB-INF/classes/WEB-INF in my war. Best regards, raymond domingo - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

maven-war-plugin howto add files to WEB-INF

2006-03-28 Thread Raymond Domingo
directoryzoo/directory /resource But this create a WEB-INF/classes/WEB-INF in my war. Best regards, raymond domingo - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

maven-war-plugin howto add files to WEB-INF

2006-03-28 Thread Raymond Domingo
directoryzoo/directory /resource But this create a WEB-INF/classes/WEB-INF in my war. Best regards, raymond domingo - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: maven-war-plugin howto add files to WEB-INF

2006-03-28 Thread Raymond Domingo
... ? On Tue, 28 Mar 2006 14:19:38 +0530, Krishnan A S wrote Place under webapp/WEB-INF/zoo/foo.xml in ur build structure Thanks Regards, A.S.KRISHNAN, AZTEC, BANGALORE. -Original Message- From: Raymond Domingo [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 28, 2006 2:14 PM To: users

RE: maven-war-plugin howto add files to WEB-INF

2006-03-28 Thread Raymond Domingo
... ? On Tue, 28 Mar 2006 14:19:38 +0530, Krishnan A S wrote Place under webapp/WEB-INF/zoo/foo.xml in ur build structure Thanks Regards, A.S.KRISHNAN, AZTEC, BANGALORE. -Original Message- From: Raymond Domingo [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 28, 2006 2:14 PM To: users

RE: maven-war-plugin howto add files to WEB-INF

2006-03-28 Thread Raymond Domingo
... ? On Tue, 28 Mar 2006 14:19:38 +0530, Krishnan A S wrote Place under webapp/WEB-INF/zoo/foo.xml in ur build structure Thanks Regards, A.S.KRISHNAN, AZTEC, BANGALORE. -Original Message- From: Raymond Domingo [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 28, 2006 2:14 PM To: users

maven-war-plugin how to exclude jar files from WEB-INF/lib

2006-03-27 Thread Raymond Domingo
excludes exclude**/jboss-j2ee-*.jar/excludes /excludes /configuration /plugin Anyone out there who nows how to filter jar files from a war ? Best regards, raymond domingo

Re: maven-war-plugin how to exclude jar files from WEB-INF/lib

2006-03-27 Thread Raymond Domingo
YES, This worked for me. Thanks raymond On Tue, 28 Mar 2006 00:49:37 -0600, Wayne Fay wrote Use scopeprovided/scope for this dependency to keep it out of the lib directory. Wayne On 3/28/06, Raymond Domingo [EMAIL PROTECTED] wrote: Hello All, I just starting to use maven