Package org.sonatype.nexus.rest.model

Examples of org.sonatype.nexus.rest.model.Maven2ArtifactInfoResourceRespose


        // if we cannot calculate the gav, it is not a maven artifact (or hash/sig), return null;
        return null;
      }

      // if we are here, we have GAV, so just pack it and send it back
      Maven2ArtifactInfoResourceRespose response = new Maven2ArtifactInfoResourceRespose();
      Maven2ArtifactInfoResource data = new Maven2ArtifactInfoResource();
      response.setData(data);

      data.setGroupId(gav.getGroupId());
      data.setArtifactId(gav.getArtifactId());
      data.setBaseVersion(gav.getBaseVersion());
      data.setVersion(gav.getVersion());
View Full Code Here

TOP

Related Classes of org.sonatype.nexus.rest.model.Maven2ArtifactInfoResourceRespose

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.