Package org.eclipse.aether.util.repository

Examples of org.eclipse.aether.util.repository.JreProxySelector


      session.setLocalRepositoryManager(localRepositoryManager);
    }

    ProxySelector existing = session.getProxySelector();
    if (existing == null || !(existing instanceof CompositeProxySelector)) {
      JreProxySelector fallback = new JreProxySelector();
      ProxySelector selector = existing == null ? fallback
          : new CompositeProxySelector(Arrays.asList(existing, fallback));
      session.setProxySelector(selector);
    }
  }
View Full Code Here

TOP

Related Classes of org.eclipse.aether.util.repository.JreProxySelector

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.