有没有办法让 Maven 为我的本地存储库的所有依赖项安装 javadoc?
通过运行 mvn dependency:sources 我可以强制 maven 解析项目中的所有依赖项、下载源代码并将它们安装到我的本地存储库中。
是否有一些东西可以对我的依赖项的 JavaDocs 执行相同的操作? 即从上游存储库中获取它们并将它们安装到我的本地存储库中。
By running mvn dependency:sources
I can force maven to resolve all dependencies in my project, download the sources, and install them into my local repo.
Is there something that does the same thing with my dependencies' JavaDocs? I.e. grab them from upstream repos and install them into my local repo.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一种方法可以使用
eclipse:eclipse
mojo 使用downloadJavadocs
参数。如果您不使用 eclipse,则稍后再使用
。
我知道这是一个黑客行为,但它确实有效。
实际上,
dependency:sources
假装可以通过classifier
和
类型
参数,所以有一瞬间我以为你可以这样做:
但我尝试了一下,但没有成功。然后我检查了源代码,发现了这一点:
我现在已经提交了一个与此相关的Bug。
There is a way to do it with the
eclipse:eclipse
mojo using thedownloadJavadocs
parameter.And if you don't use eclipse, just do
afterwards.
It's a hack, I know, but it works.
Actually,
dependency:sources
pretends to be configurable through theclassifier
andtype
parameters, so for a moment I thought you could do this:but I tried it and it didn't work. Then I checked the source code and found this:
I have now submitted a Bug concerning this.