Nexus:代理和虚拟化 maven1 存储库
我安装了 Nexus 1.9.2.3 并且我正在尝试代理 Maven 1 存储库: http://maven.restlet.org/
为此,我创建了 maven1 代理,然后创建了一个虚拟存储库(M1->M2)。
我的服务器设置似乎没问题,因为我可以在“浏览远程”选项卡中浏览存储库,但我无法使用“工件搜索”或使用 maven 依赖项来查找工件:
<dependency>
<groupId>org.restlet</groupId>
<artifactId>org.restlet.ext.wadl</artifactId>
<version>1.1.6</version>
</dependency>
其他 maven2 工件已成功检索我不明白为什么找不到 m1 工件。我应该如何从 maven1 代理存储库获取工件?
谢谢。
I installed nexus 1.9.2.3 and I'm trying to proxy a maven 1 repository:
http://maven.restlet.org/
To do so, I created the maven1 proxy and then, created a virtual repository (M1->M2).
My server settings seems to be ok since I'm able to browse the repo in the "Browse Remote" tab, but I'm not able to find artifacts using the "Artifact Search" or with maven dependencies:
<dependency>
<groupId>org.restlet</groupId>
<artifactId>org.restlet.ext.wadl</artifactId>
<version>1.1.6</version>
</dependency>
Others maven2 artifacts are retrieved successfully and I don't understand why m1 artifacts are not found. How should I fetch artifacts from a maven1 proxied repository?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这不起作用,因为您提到的存储库 URL 是 Maven 2 存储库,而不是 Maven 1 存储库。因此,您必须将其配置为 Maven 2 存储库,并将虚拟存储库从 m2 转换为 m1。
This wont work because the repository URL you are mentioning is a Maven 2 repository and NOT a Maven 1 repository. So you have to configure it as a Maven 2 repo and turn virtual repository from m2 to m1.