M2Eclipse 缺少工件(它没有检查 ~user/.m2 中的本地存储库)
我添加了一个 jar:
mvn install:install-file
-Dfile=<path-to-file>
-DgroupId=<group-id>
-DartifactId=<artifact-id>
-Dversion=<version>
-Dpackaging=<packaging>
-DgeneratePom=true
并将其添加为依赖项。 M2eclipse 通过外部存储库 URL 尝试下载 jar,但失败了。它何时以及如何检查本地存储库中的 jar?
已解决:不要混淆下划线和连字符。
I added a jar with:
mvn install:install-file
-Dfile=<path-to-file>
-DgroupId=<group-id>
-DartifactId=<artifact-id>
-Dversion=<version>
-Dpackaging=<packaging>
-DgeneratePom=true
And added it as a dependency. M2eclipse went through the external repository URLs attempting to download the jar and failed. When and how will it check the local repository for the jar?
Resolved: don't mix up underscores and hyphens.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
转到您的用户目录,即
C:\Profiles\youruser
,应该有一个名为.m2
的文件夹可能被隐藏。在里面你可以看到该 jar 是否已安装(尽管如果控制台显示 BUILD success 你应该很好)。Go to your user directory i.e.
C:\Profiles\youruser
there should be a folder called.m2
may be hidden. Inside you can see whether that jar has been installed or not(although if the console says BUILD success you should be good).