如何配置 maven 项目以从不同的存储库获取工件之一?
我想将它包含在项目中https://github.com/twitter/hadoop-lzo但我只能在 twitter 存储库中找到它,而不是在中央 maven 存储库中。
如何配置 maven 项目以从不同的存储库获取工件之一?
我想将它包含在项目中https://github.com/twitter/hadoop-lzo但我只能在 twitter 存储库中找到它,而不是在中央 maven 存储库中。
您可以在 settings.xml 或 POM 中设置要使用的存储库。
如果你有一个团队在做这个项目,你可能想把它放在 POM 中,这样每个人都有 conf.
你可以这样做:
<repositories>
<repository>
<id>Maven Central</id>
<url>http://repo1.maven.org/maven2/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
.... other repos
</repositories>