使用Maven从多个存储库中获取工件



如何配置maven项目以从不同的存储库中获取其中一个工件?

我想把它包括在项目中https://github.com/twitter/hadoop-lzo但我只能在twitter存储库中找到它,而不能在中央maven存储库中。

您可以在settings.xml或POM中设置要使用的存储库。

如果你有一个团队在做这个项目,你可能想把它放在POM中,这样每个人都可以进行协商。

你可以这样做:

<repositories>
    <repository>
      <id>Maven Central</id>
      <url>http://repo1.maven.org/maven2/</url>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
    </repository>

.... other repos
</repositories>

相关内容

  • 没有找到相关文章

最新更新