, )? I can see the Nexus OSS repo manager (re) ...">

Schema or reference for maven-metadata.xml in maven 3 (specifically for <latest / ">, <release /">)?

I can see the Nexus OSS repo manager (re) generating the following maven-metadata.xml and cannot find any information on what the following properties mean (or where can I find a link to maven-metata.xml - similar to pom.xml )

  • the last one is not the last one or the lastUpdated timestamp in our case. The Nexus FAQ says this only applies to plugin artifacts. Is it really so? Is it benign or harmful when present for artifacts without plugins?
  • release - what is the meaning of this property? When used for SNAPSHOT artifacts?

The maven-metadata.xml artifact - generated by Nexus:

<metadata>
  <groupId>com.castanealabs</groupId>
  <artifactId>castanealabs-config</artifactId>
  <versioning>
    <latest>10-SNAPSHOT</latest>
    <release></release>
    <versions>
      <version>1.0-SNAPSHOT</version>
      <version>7-SNAPSHOT</version>
      <version>8-SNAPSHOT</version>
      <version>10-SNAPSHOT</version>
      <version>11-SNAPSHOT</version>
    </versions>
    <lastUpdated>20120321194127</lastUpdated>
  </versioning>
</metadata>

      

+3


source to share


1 answer


Here are some links to the file maven-metadata.xml

. In this case, a simple Google might help.



+1


source







All Articles