You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by kristian <m....@web.de> on 2010/02/09 16:54:34 UTC

custom WagonManager in maven3 - how ?

hello,

is there a way to have a custom
org.apache.maven.repository.legacy.DefaultWagonManager

I tried to add it in plugin with extension by adding it into
plexus/components.xml like this:

<component-set>
  <components>
    <component>
      <role>org.apache.maven.repository.legacy.WagonManager</role>
      <role-hint>default</role-hint>
      <implementation>
	de.saumya.mojo.gem.GemWagonManager
      </implementation>
      <isolated-realm>false</isolated-realm>
      <requirements>
        <requirement>
          <role>org.codehaus.plexus.logging.Logger</role>
          <role-hint>default</role-hint>
          <field-name>logger</field-name>
        </requirement>
        <requirement>
. . . . rest copied from original DefaultWagonManager . . .

but that does not seams to have any effect.

what is the right way to do it ? build extensions maybe?

thanx in advance
Kristian

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org