Examples of MavenCoordinatesQuery


Examples of org.sonatype.nexus.mindexer.client.MavenCoordinatesQuery

  @Override
  public SearchResponse searchByGAV(String groupId, String artifactId, String version, String classifier,
                                    String type, String repositoryId)
  {
    final MavenCoordinatesQuery query = new MavenCoordinatesQuery();
    query.setGroupId(groupId);
    query.setArtifactId(artifactId);
    query.setVersion(version);
    query.setClassifier(classifier);
    query.setType(type);
    return search(new SearchRequest(repositoryId, query));
  }
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.