您知道 mvnrepository.com 的 Maven 配置文件吗?
我正在尝试在我的 Maven 项目中包含一些依赖项。这些依赖项在默认的 Maven 2 存储库中不可用 http://repo1.maven.org/maven2/。
它们可以在 http://mvnrepository.com/ 获取。
但我找不到该网站的配置文件以包含在我的 settings.xml
中。
有谁知道这个存储库的 URL 和配置文件是什么?
I am trying to include some dependencies in my Maven project. These dependencies are not available in the default Maven 2 repository http://repo1.maven.org/maven2/.
They are available at http://mvnrepository.com/.
But I couldn't find the profile for this site to include in my settings.xml
.
Does anyone know what this repository's URL and profile is?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
通过 mvnrepository.com 找到您的 jar 后,将鼠标悬停在“下载 (JAR)”链接上,您将看到包含您的 jar 的存储库的链接(您可以右键单击并“复制链接 URL”来获取URL,无论您的浏览器是什么)。
然后,您必须将此存储库添加到您的项目使用的存储库中,在您的 pom.xml 中:
编辑:现在 MVNrepository.com 已经发展:您可以在“存储库”部分找到存储库的链接:
许可证
类别
主页
日期
文件
存储库
Once you've found your jar through mvnrepository.com, hover the "download (JAR)" link, and you'll see the link to the repository which contains your jar (you can probably Right clic and "Copy link URL" to get the URL, what ever your browser is).
Then, you have to add this repository to the repositories used by your project, in your pom.xml :
EDIT : now MVNrepository.com has evolved : You can find the link to the repository in the "Repositories" section :
License
Categories
HomePage
Date
Files
Repositories
mvnrepository.com 不是存储库。这是一个搜索引擎。如果它不是中心的,它可能会或可能不会告诉您它在哪个存储库中找到了东西;由于您没有发布示例,我无法帮助您阅读输出。
mvnrepository.com isn't a repository. It's a search engine. It might or might not tell you what repository it found stuff in if it's not central; since you didn't post an example, I can't help you read the output.
您可以将此配置放入 settings.xml 文件中:
You can put this configuration in your settings.xml file:
请使用此个人资料
Please use this profile
将其放入
~/.m2/settings.xml
或要使用$ mvn -s custom-settings.xml install
运行的自定义文件中Place this in the
~/.m2/settings.xml
or custom file to be run with$ mvn -s custom-settings.xml install