You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by "lacton (JIRA)" <ji...@apache.org> on 2009/03/07 21:44:56 UTC

[jira] Created: (BUILDR-264) Handling the tag in an artifact's POM file

Handling the <relocation> tag in an artifact's POM file
-------------------------------------------------------

                 Key: BUILDR-264
                 URL: https://issues.apache.org/jira/browse/BUILDR-264
             Project: Buildr
          Issue Type: Improvement
          Components: Dependency management
            Reporter: lacton
            Priority: Minor


Buildr fails to download artifact 'org.scalatest:scalatest:jar:0.9.4' from the http://scala-tools.org/repo-releases maven repository.

The reason is that the POM file at http://scala-tools.org/repo-releases/org/scalatest/scalatest/0.9.4/ contains a relocation tag and buildr does not handle it.

<project ...>
  <groupId>org.scalatest</groupId>
  <artifactId>scalatest</artifactId>
  <version>0.9.4</version>
  <distributionManagement>
    <relocation>
      <groupId>org.scala-tools.testing</groupId>
    </relocation>
  </distributionManagement>
</project>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.