RE: How to avoid transitive Dependencies getting packaged

2008-01-09 Thread nicklist
ssage- From: Vishal Pahwa [mailto:[EMAIL PROTECTED] Sent: Wed 1/9/2008 9:31 AM To: Maven Users List Subject: RE: How to avoid transitive Dependencies getting packaged Amit Thats pretty much fine but the problem is we have got plenty of dependencies and stopping them to get inside lib directory with

RE: How to avoid transitive Dependencies getting packaged

2008-01-09 Thread nicklist
Users List Subject: Re: How to avoid transitive Dependencies getting packaged Vishal: you can use A A in exclusion you can specify the dependencies of A. As per my knowledge there would be one exclusion tag for each dependency. This is the only method I know by now. Nick: I am using Maven

Re: How to avoid transitive Dependencies getting packaged

2008-01-09 Thread amit kumar
ilar. > > > > So could anyone please tell me how to avoid these transitive > > dependencies to get intrude in the lib directory of the war file. > > > > Regards > > > > Vishal. > > > > -Original Message- > > From: amit kumar [mailto:[EMAIL

RE: How to avoid transitive Dependencies getting packaged

2008-01-09 Thread Vishal Pahwa
[mailto:[EMAIL PROTECTED] Sent: Wednesday, January 09, 2008 1:53 PM To: Maven Users List Subject: Re: How to avoid transitive Dependencies getting packaged Vishal: you can use A A in exclusion you can specify the dependencies of A. As per my knowledge there would be one exclusion tag for each

Re: How to avoid transitive Dependencies getting packaged

2008-01-09 Thread amit kumar
could anyone please tell me how to avoid these transitive > dependencies to get intrude in the lib directory of the war file. > > Regards > > Vishal. > > -Original Message- > From: amit kumar [mailto:[EMAIL PROTECTED] > Sent: Wednesday, January 09, 2008 12:46 PM >

RE: How to avoid transitive Dependencies getting packaged

2008-01-08 Thread nicklist
tes > [EMAIL PROTECTED] > (434) 817-2640 > > > -Original Message- > From: Wayne Fay [mailto:[EMAIL PROTECTED] > Sent: Tuesday, January 08, 2008 9:51 AM > To: Maven Users List > Subject: Re: How to avoid transitive Dependencies getting packaged > > The way I do t

RE: How to avoid transitive Dependencies getting packaged

2008-01-08 Thread Vishal Pahwa
t; Senior Associate > Perrin Quarles Associates > [EMAIL PROTECTED] > (434) 817-2640 > > > -Original Message- > From: Wayne Fay [mailto:[EMAIL PROTECTED] > Sent: Tuesday, January 08, 2008 9:51 AM > To: Maven Users List > Subject: Re: How to avoid transitive Dep

Re: How to avoid transitive Dependencies getting packaged

2008-01-08 Thread amit kumar
gt; [EMAIL PROTECTED] > (434) 817-2640 > > > -Original Message- > From: Wayne Fay [mailto:[EMAIL PROTECTED] > Sent: Tuesday, January 08, 2008 9:51 AM > To: Maven Users List > Subject: Re: How to avoid transitive Dependencies getting packaged > > The way I do this

RE: How to avoid transitive Dependencies getting packaged

2008-01-08 Thread Brewster, Richard
EMAIL PROTECTED] (434) 817-2640 -Original Message- From: Wayne Fay [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 08, 2008 9:51 AM To: Maven Users List Subject: Re: How to avoid transitive Dependencies getting packaged The way I do this (and there may be another or better way),

Re: How to avoid transitive Dependencies getting packaged

2008-01-08 Thread Wayne Fay
The way I do this (and there may be another or better way), I add explicitly add the transitive dependencies to my pom, and mark them as scope "provided". Wayne On 1/8/08, amit kumar <[EMAIL PROTECTED]> wrote: > Hi, > I am building a WAR, but I see some jar files in the lib WEB-INF\lib folder > i

How to avoid transitive Dependencies getting packaged

2008-01-08 Thread amit kumar
Hi, I am building a WAR, but I see some jar files in the lib WEB-INF\lib folder in the build which are not mentioned in the pom.xml, and probably are transitive dependencies. How do I make sure the transitive dependencies are not put in the lib folder. I looked on maven-war-plugin FAQs but not any