RE: dependency.getDependencies()

2008-12-15 Thread EJ Ciramella
NVM - I can see that I was using the wrong get method. Nothing to see here -Original Message- From: EJ Ciramella [mailto:ecirame...@upromise.com] Sent: Monday, December 15, 2008 3:28 PM To: Maven Users List Subject: RE: dependency.getDependencies() Would things with classifiers be

RE: dependency.getDependencies()

2008-12-15 Thread EJ Ciramella
PM To: Maven Users List Subject: Re: dependency.getDependencies() 2008/12/12 EJ Ciramella > Hmmm, where to start > > Firstly, we've created our own packaging type (atg-module). This > packaging type generates a jar and a zip. The zip is what has the > scope of "pr

Re: dependency.getDependencies()

2008-12-11 Thread John Stoneham
> Firstly, we've created our own packaging type (atg-module). This > packaging type generates a jar and a zip. The zip is what has the scope > of "provided". This isn't a compile time dependency and we did NOT want > the zip showing up in every jar generated where there is a dependency on > said

Re: dependency.getDependencies()

2008-12-11 Thread Stuart McCulloch
cy) but not C. > A depends on B depends on C > > > > A to B is provided > > B to C is provided > > > > B shows up C does not. > > -----Original Message- > From: Wayne Fay [mailto:wayne...@gmail.com] > Sent: Thursday, December 11, 2008 5:49 PM >

RE: dependency.getDependencies()

2008-12-11 Thread EJ Ciramella
ber 11, 2008 5:49 PM To: Maven Users List Subject: Re: dependency.getDependencies() In that example, I don't believe C will ever show up in a deps tree or report. So I'm not surprised the API does not reveal them. Transitive deps of provided deps are basically your problem. If B to C

Re: dependency.getDependencies()

2008-12-11 Thread Wayne Fay
irly...@gmail.com [mailto:sirly...@gmail.com] On Behalf Of John > Stoneham > Sent: Thursday, December 11, 2008 1:20 PM > To: Maven Users List > Subject: Re: dependency.getDependencies() > >> On Thu, Dec 11, 2008 at 9:25 AM, EJ Ciramella > wrote: >>> is there a way t

RE: dependency.getDependencies()

2008-12-11 Thread EJ Ciramella
neham Sent: Thursday, December 11, 2008 1:20 PM To: Maven Users List Subject: Re: dependency.getDependencies() > On Thu, Dec 11, 2008 at 9:25 AM, EJ Ciramella wrote: >> is there a way to get ALL dependencies (including transitive ones)? Marking your mojo with "@requiresDependencyRes

Re: dependency.getDependencies()

2008-12-11 Thread John Stoneham
> On Thu, Dec 11, 2008 at 9:25 AM, EJ Ciramella wrote: >> is there a way to get ALL dependencies (including transitive ones)? Marking your mojo with "@requiresDependencyResolution test" ought to resolve all this out for you and populate the artifacts variables on the MavenProject object. - John

RE: dependency.getDependencies()

2008-12-11 Thread EJ Ciramella
t: RE: dependency.getDependencies() Thank you - let me digest -Original Message- From: Luke Patterson [mailto:lukewpatter...@gmail.com] Sent: Thursday, December 11, 2008 10:46 AM To: Maven Users List Subject: Re: dependency.getDependencies() On Thu, Dec 11, 2008 at 9:25 AM, EJ Ciramella wrote:

RE: dependency.getDependencies()

2008-12-11 Thread EJ Ciramella
Thank you - let me digest -Original Message- From: Luke Patterson [mailto:lukewpatter...@gmail.com] Sent: Thursday, December 11, 2008 10:46 AM To: Maven Users List Subject: Re: dependency.getDependencies() On Thu, Dec 11, 2008 at 9:25 AM, EJ Ciramella wrote: > is there a way

Re: dependency.getDependencies()

2008-12-11 Thread Luke Patterson
On Thu, Dec 11, 2008 at 9:25 AM, EJ Ciramella <[EMAIL PROTECTED]> wrote: > is there a way to get ALL dependencies (including transitive ones)? It sounds like this thread might help: http://www.nabble.com/How-to-get-all-dependecy-in-a-mojo---td19533728.html#a19533728 > depth first dependency tra

RE: dependency.getDependencies()

2008-12-11 Thread EJ Ciramella
er 11, 2008 9:55 AM To: Maven Users List Subject: RE: dependency.getDependencies() Nvm - I found a much better approach to doing any of this - -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Thursday, December 11, 2008 9:33 AM To: users@maven.apache.org Su

RE: dependency.getDependencies()

2008-12-11 Thread EJ Ciramella
Nvm - I found a much better approach to doing any of this - -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Thursday, December 11, 2008 9:33 AM To: users@maven.apache.org Subject: dependency.getDependencies() Is there a way to do what the pseudo code in the

dependency.getDependencies()

2008-12-11 Thread EJ Ciramella
Is there a way to do what the pseudo code in the subject line is talking about in a maven plugin? We wrote a home grown, depth first dependency traversing package (because we couldn't find this documented anywhere), but there are short comings to it. I'd prefer that we leverage the built in mave