RE : Re: RE : Re: localRepository access from maven-plugin

2007-10-16 Thread Adrian Gonzalez
It works great now ! Thank you very much Nico for your very appreciated help. I was really getting stuck here. --- nicolas de loof <[EMAIL PROTECTED]> a écrit : > Yes, plexus will inject any dependency for common > maven components. > > If you need an ArtifactResolutionResult, you should > us

Re: RE : Re: localRepository access from maven-plugin

2007-10-16 Thread nicolas de loof
Yes, plexus will inject any dependency for common maven components. If you need an ArtifactResolutionResult, you should use ArtifactResolver and copy surefire plugin resolveArtifact() method. Nico 2007/10/16, Adrian Gonzalez <[EMAIL PROTECTED]>: > > Thanks nicolas, > > I've took a look at suref

RE : Re: localRepository access from maven-plugin

2007-10-16 Thread Adrian Gonzalez
Thanks nicolas, I've took a look at surefire plugin, all I need to do is this ? /** * @parameter expression="${localRepository}" * @required * @readonly */ private ArtifactRepository localRepository; --- nicolas de loof <[EMAIL PROTECTED]> a écrit : > Why not use an ArtifactResolver as th