ProjectVersionMetadata Data Type

Properties
name data type description
ciManagement CiManagement
dependencies array of Dependency
description string
id string
incomplete boolean
issueManagement IssueManagement
licenses array of License
mailingLists array of MailingList
name string
organization Organization
scm Scm
url string
version string
Properties inherited from FacetedMetadata
facetIds array of string Get all the keys of the facets available on this metadata.
facetList array of object Get all the facets available on this metadata.
facets object Get all available facets as a Map (typically used by bean rendering, such as in Archiva's JSPs).

Example

{
  "id" : "...",
  "version" : "...",
  "description" : "...",
  "url" : "...",
  "name" : "...",
  "organization" : {
    "url" : "...",
    "name" : "..."
  },
  "issueManagement" : {
    "url" : "...",
    "system" : "..."
  },
  "scm" : {
    "url" : "...",
    "developerConnection" : "...",
    "connection" : "..."
  },
  "ciManagement" : {
    "url" : "...",
    "system" : "..."
  },
  "licenses" : [ {
    "name" : "...",
    "url" : "..."
  }, {
    "name" : "...",
    "url" : "..."
  } ],
  "mailingLists" : [ {
    "mainArchiveUrl" : "...",
    "otherArchives" : [ "...", "..." ],
    "subscribeAddress" : "...",
    "unsubscribeAddress" : "...",
    "postAddress" : "...",
    "name" : "..."
  }, {
    "mainArchiveUrl" : "...",
    "otherArchives" : [ "...", "..." ],
    "subscribeAddress" : "...",
    "unsubscribeAddress" : "...",
    "postAddress" : "...",
    "name" : "..."
  } ],
  "dependencies" : [ {
    "classifier" : "...",
    "optional" : true,
    "scope" : "...",
    "systemPath" : "...",
    "type" : "...",
    "version" : "...",
    "artifactId" : "...",
    "groupId" : "..."
  }, {
    "classifier" : "...",
    "optional" : true,
    "scope" : "...",
    "systemPath" : "...",
    "type" : "...",
    "version" : "...",
    "artifactId" : "...",
    "groupId" : "..."
  } ],
  "incomplete" : true,
  "facetList" : [ { }, { } ],
  "facetIds" : [ "...", "..." ],
  "facets" : {
    "property1" : "...",
    "property2" : "..."
  }
}