On 6/5/07, CasMeiron <[EMAIL PROTECTED]> wrote:

ArtifactoryFactory : interface
ArtifactResolver : interface

Where can we find the implementations? I already have a list of
dependencies, just need resolve the full path for each dependency.



Instances of these interfaces can be injected into your mojo as plexus
components.
Just tag them with javadoc annotations and they will be injected, like this:

   /**
    * @component
    */
   private ArtifactFactory artifactFactory;
   /**
    * @component
    */
   private ArtifactResolver artifactResolver;

Cheers
Jo

Reply via email to