Class PlexusWagonProvider

    • Constructor Detail

      • PlexusWagonProvider

        @Inject
        public PlexusWagonProvider​(org.codehaus.plexus.PlexusContainer container)
        Creates a wagon provider using the specified Plexus container.
        Parameters:
        container - The Plexus container instance to use, must not be null.
    • Method Detail

      • lookup

        public org.apache.maven.wagon.Wagon lookup​(String roleHint)
                                            throws Exception
        Description copied from interface: WagonProvider
        Acquires a wagon instance that matches the specified role hint. The role hint is derived from the URI scheme, e.g. "http" or "file".
        Specified by:
        lookup in interface WagonProvider
        Parameters:
        roleHint - The role hint to get a wagon for, must not be null.
        Returns:
        The requested wagon instance, never null.
        Throws:
        Exception - If no wagon could be retrieved for the specified role hint.
      • release

        public void release​(org.apache.maven.wagon.Wagon wagon)
        Description copied from interface: WagonProvider
        Releases the specified wagon. A wagon provider may either free any resources allocated for the wagon instance or return the instance back to a pool for future use.
        Specified by:
        release in interface WagonProvider
        Parameters:
        wagon - The wagon to release, may be null.