Package org.ebayopensource.nexus.plugins.artifactusage.store

Examples of org.ebayopensource.nexus.plugins.artifactusage.store.GAV


  }

  protected void collectArtifacts(Set<GAV> artifacts,
      Collection<ArtifactUser> users) {
    for (ArtifactUser user : users) {
      GAV userGav = user.getGav();
      if (artifacts.add(userGav)) {
        collectArtifacts(artifacts, user.getArtifactUsers());
      }
    }
  }
View Full Code Here

TOP

Related Classes of org.ebayopensource.nexus.plugins.artifactusage.store.GAV

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.