Package org.sonatype.nexus.mindexer.client

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


        for (NexusNGArtifactLink responseArtifactLink : responseArtifactHit.getArtifactLinks()) {
          // "pom" records are generated for stupid client, they are NOT
          // coming from index but rather are injected on the fly
          if (responseArtifactHit.getArtifactLinks().size() > 1
              && !"pom".equals(responseArtifactLink.getExtension())) {
            SearchResponseArtifact artifact =
                new SearchResponseArtifact(responseHit.getGroupId(), responseHit.getArtifactId(),
                    responseHit.getVersion(), responseArtifactLink.getClassifier(),
                    responseArtifactLink.getExtension(),
                    repositories.get(responseArtifactHit.getRepositoryId()),
                    responseHit.getLatestSnapshot(), responseHit.getLatestSnapshotRepositoryId(),
                    responseHit.getLatestRelease(), responseHit.getLatestReleaseRepositoryId(),
View Full Code Here

TOP

Related Classes of org.sonatype.nexus.mindexer.client.SearchResponseArtifact

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.