Uploaded image for project: 'Maven'
  1. Maven
  2. MNG-5459

failure to resolve pom artifact from snapshotVersion in maven-metadata.xml

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 3.0.5, 3.1.0
    • 3.1.1
    • None
    • Patch

    Description

      We're using Artifactory on the server side, and ivy / sbt to publish artifacts upstream.

      After publishing several -SNAPSHOT versions of a project, trying to use it from Maven, resulted in a warning and ultimately a build failure because it cannot determine the dependencies:

      [WARNING] The POM for com.foo:bar:jar:0.4.0-20130404.093655-3 is missing, no dependency information available

      This is the corresponding maven-metadata-snapshots.xml:

      <metadata>
        <groupId>com.foo</groupId>
        <artifactId>bar</artifactId>
        <version>0.4.0-SNAPSHOT</version>
        <versioning>
          <snapshot>
            <timestamp>20130404.090532</timestamp>
            <buildNumber>2</buildNumber>
          </snapshot>
          <lastUpdated>20130404093657</lastUpdated>
          <snapshotVersions>
            <snapshotVersion>
              <extension>pom</extension>
              <value>0.4.0-20130404.090532-2</value>
              <updated>20130404090532</updated>
            </snapshotVersion>
            <snapshotVersion>
              <extension>jar</extension>
              <value>0.4.0-20130404.093655-3</value>
              <updated>20130404093655</updated>
            </snapshotVersion>
          </snapshotVersions>
        </versioning>
      </metadata>
      

      As you can see, the <value> for the jar artifact and the pom artifact differ:

      0.4.0-20130404.093655-3
      0.4.0-20130404.090532-2

      Apparently, artifactory optimizes the case when an artifact doesn't change; it does not create a new file, but just links to the existing one.

      Maven, however, takes a shortcut and makes the erroneous assumption that the values for pom and jar artifact always match up.

      The attached patch fixes this.

      Attachments

        1. mvn-snapshot-resolve-fix.diff
          2 kB
          Claudio Bley
        2. mng5459.patch
          6 kB
          Robert Scholte

        Activity

          People

            rfscholte Robert Scholte
            cbley Claudio Bley
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: