Package org.moxie.proxy

Examples of org.moxie.proxy.DependencyLink


      return null;
    }
    // find dependencies as they might be in another local/proxied repository
    List<DependencyLink> list = new ArrayList<DependencyLink>();
    for (Dependency dependency : pom.getDependencies(true)) {
      DependencyLink link = getProxyConfig().find(dependency);
      if (link != null) {
        list.add(link);
      }
    }
    return list;
View Full Code Here

TOP

Related Classes of org.moxie.proxy.DependencyLink

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.