Examples of ProxiedArtifactRepository


Examples of org.apache.maven.archiva.proxy.ProxiedArtifactRepository

        }

        ArtifactRepository artifactRepository = repoFactory.createArtifactRepository( configuration.getId(),
                                                                                      configuration.getUrl(), layout,
                                                                                      snapshotsPolicy, releasesPolicy );
        ProxiedArtifactRepository repository = new ProxiedArtifactRepository( artifactRepository );
        repository.setCacheFailures( configuration.isCacheFailures() );
        repository.setHardFail( configuration.isHardFail() );
        repository.setName( configuration.getName() );
        repository.setUseNetworkProxy( configuration.isUseNetworkProxy() );
        return repository;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.