Re: How to use ArtifactResolver.resovleTransitively ?

2007-05-26 Thread John Casey
Usually: 1. the artifact set is the set of direct-dependency artifacts from your project (using project.createArtifacts(..) to create them if they're missing) 2. the originating artifact is project.getArtifact() 3. the metadataSource is a component, so if you're calling

Re: How to use ArtifactResolver.resovleTransitively ?

2007-05-26 Thread Kevin Stembridge
Hi John, Thanks very much. That's exactly what I needed to know. I've managed to get things working quite well now. Cheers, Kevin On Sat, 2007-05-26 at 12:27 -0400, John Casey wrote: Usually: 1. the artifact set is the set of direct-dependency artifacts from your project (using

Re: How to use ArtifactResolver.resovleTransitively ?

2007-05-25 Thread Hervé BOUTEMY
Hi, If you look at dependencies Maven Ant Task, you'll see this API at work. Hervé Le vendredi 25 mai 2007, Kevin Stembridge a écrit : Hi folks, I'm writing a patch for the webstart-maven-plugin and I'm having some trouble trying to use ArtifactResolver to resovle transitive dependencies.