如何在maven的settings.xml中配置本地和远程存储库
我有自己的组织内部存储库,我想使用它:
<repository>
<id>archiva.default</id>
<url>http://my.org.repo:8000/archiva/repository/internal/</url>
</repository>
我还需要远程存储库来获取最新版本的 maven-resource-plugin、maven-compile-plugin、jboss 等。
有人可以建议我如何配置设置。 xml 以便 maven 下载内部存储库中可用的依赖项,如果内部存储库中没有可用的依赖项,则从远程存储库获取它。
I have my own organization internal repository for which i would like to use:
<repository>
<id>archiva.default</id>
<url>http://my.org.repo:8000/archiva/repository/internal/</url>
</repository>
I also needed remote repository to get latest version of maven-resource-plugin, maven-compile-plugin, jboss etc.
Can someone please suggest me how to configure settings.xml so that maven downloads the dependencies that are available in internal repository, if the dependencies are not available in internal repository then get it from remote repository.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找到了解决方案 http://archiva.apache.org/docs/ 1.0.2/userguide/using-repository.html:
found the solution http://archiva.apache.org/docs/1.0.2/userguide/using-repository.html: