Re: Resolving project dependencies

2006-11-10 Thread Tom Huybrechts
PROTECTED]> wrote: > Thanks for your help tom, I now have all the information I needed. > > Sebastien > > -Original Message- > From: Tom Huybrechts [mailto:[EMAIL PROTECTED] > Sent: Friday, November 10, 2006 5:26 PM > To: Maven Users List > Subject: Re: Resolving pro

RE: Resolving project dependencies

2006-11-10 Thread Sebastien Brunot
Or in the javadoc (the closer from the code, the better) !!! Sebastien -Original Message- From: Wayne Fay [mailto:[EMAIL PROTECTED] Sent: Friday, November 10, 2006 5:45 PM To: Maven Users List Subject: Re: Resolving project dependencies This is the kind of stuff that needs to land in

Re: Resolving project dependencies

2006-11-10 Thread Wayne Fay
rechts [mailto:[EMAIL PROTECTED] Sent: Friday, November 10, 2006 5:26 PM To: Maven Users List Subject: Re: Resolving project dependencies This works for me: Artifact pomArtifact = this.factory.createArtifact( groupId, artifactId, version, "", "pom"

RE: Resolving project dependencies

2006-11-10 Thread Sebastien Brunot
Thanks for your help tom, I now have all the information I needed. Sebastien -Original Message- From: Tom Huybrechts [mailto:[EMAIL PROTECTED] Sent: Friday, November 10, 2006 5:26 PM To: Maven Users List Subject: Re: Resolving project dependencies This works for me: Artifact

Re: Resolving project dependencies

2006-11-10 Thread Tom Huybrechts
OTECTED] Sent: Friday, November 10, 2006 4:53 PM To: Maven Users List Subject: Re: Resolving project dependencies On 10/11/06, Sebastien Brunot <[EMAIL PROTECTED]> wrote: > I'm not sure I undestand your question, but I want to get a list of > all the artifact that correspond to a depe

RE: Resolving project dependencies

2006-11-10 Thread Sebastien Brunot
ember 10, 2006 4:53 PM To: Maven Users List Subject: Re: Resolving project dependencies On 10/11/06, Sebastien Brunot <[EMAIL PROTECTED]> wrote: > I'm not sure I undestand your question, but I want to get a list of > all the artifact that correspond to a dependency declared in the &

Re: Resolving project dependencies

2006-11-10 Thread Mark Hobson
On 10/11/06, Sebastien Brunot <[EMAIL PROTECTED]> wrote: I'm not sure I undestand your question, but I want to get a list of all the artifact that correspond to a dependency declared in the MavenProject POM, with or without transitivity depending on a parameter set in my plugin configuration. Wit

RE: Resolving project dependencies

2006-11-10 Thread Sebastien Brunot
ty is optional. Sebastien -Original Message- From: Mark Hobson [mailto:[EMAIL PROTECTED] Sent: Friday, November 10, 2006 4:38 PM To: Maven Users List Subject: Re: Resolving project dependencies On 10/11/06, Sebastien Brunot <[EMAIL PROTECTED]> wrote: > how do you programmatica

Re: Resolving project dependencies

2006-11-10 Thread Mark Hobson
On 10/11/06, Sebastien Brunot <[EMAIL PROTECTED]> wrote: how do you programmaticaly resolve the dependencies of a MavenProject object ? Are you trying to resolve: the project's declared dependencies; all the project's transitive dependencies; or traverse the project's dependency tree? Mark --

Resolving project dependencies

2006-11-10 Thread Sebastien Brunot
Hi all, how do you programmaticaly resolve the dependencies of a MavenProject object ? I've got a MavenProject object in my mojo (that i've created from an Artifact object), and i now want to resolves its dependencies in ordre to get them as artifacts using the getArtifactDependencies() method.