Package org.apache.maven.artifact.manager

Examples of org.apache.maven.artifact.manager.WagonConfigurationException


                ComponentConfigurator componentConfigurator = null;
                try{
                    componentConfigurator = (ComponentConfigurator) container.lookup( ComponentConfigurator.ROLE );
                    componentConfigurator.configureComponent( wagon, plexusConf, container.getContainerRealm() );
                } catch ( final ComponentLookupException e ) {
                    throw new WagonConfigurationException( repositoryId, "Unable to lookup wagon configurator."
                        + " Wagon configuration cannot be applied.", e );
                } catch ( ComponentConfigurationException e ){
                    throw new WagonConfigurationException( repositoryId, "Unable to apply wagon configuration.", e );
        } finally {
          if (componentConfigurator != null) {
            try {
              container.release(componentConfigurator);
            } catch (ComponentLifecycleException e) {
View Full Code Here


            componentConfigurator = (ComponentConfigurator) container
                .lookup(ComponentConfigurator.ROLE);
            componentConfigurator.configureComponent(wagon,
                plexusConf, container.getContainerRealm());
          } catch (final ComponentLookupException e) {
            throw new WagonConfigurationException(
                repositoryId,
                "Unable to lookup wagon configurator."
                    + " Wagon configuration cannot be applied.",
                e);
          } catch (ComponentConfigurationException e) {
            throw new WagonConfigurationException(repositoryId,
                "Unable to apply wagon configuration.", e);
          } finally {
            if (componentConfigurator != null) {
              try {
                container.release(componentConfigurator);
View Full Code Here

TOP

Related Classes of org.apache.maven.artifact.manager.WagonConfigurationException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.