0

我跑

mvn dependency:resolve -Dclassifier=javadoc

并报告说

[INFO] The following files have NOT been resolved:

我知道 Maven 存储库由 Maven Central 等志愿者组织托管,并托管由志愿者完成的开源项目。

但是缺少 javadoc 让我很生气,因为使用没有 javadoc 的包很难(让 IDE 进行网络搜索和阅读过时的文档)。

我报告了一次在 Central 中缺少 Hibernate 的 javadoc(在 Hibernate BTS 中)。没有成功。对于另一个项目,我无意找到主页和 BTS/邮件列表来报告丢失的 javadocs。

改善情况的最佳方法是什么?

4

2 回答 2

3

Use this command in your project folder:

mvn dependency:sources

It will download all your dependencies' sources in your maven local repository as a jar archive (jar per dependency).

I use Netbeans 8 and Maven 3, and the IDE automatically recognizes the javadoc.

I'm using right now Hibernate 4.2.3 and the javadoc pops up whitout problem.

于 2014-09-17T17:50:01.480 回答
1

如果您使用 IntelliJ,则可以右键单击 pom.xml 并单击 maven -> Download Sources and Documentation

于 2021-07-25T15:00:25.543 回答