我的 Maven 项目中有 spring 框架依赖项。我想为 spring 框架依赖项附加 Javadoc。
我添加到pom.xml
以下几行
<repositories>
<repository>
<id>springsource-repo</id>
<name>SpringSource Repository</name>
<url>http://repo.springsource.org/release</url>
</repository>
</repositories>
<build>
<plugins>
...
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.9</version>
<configuration>
<downloadSources>true</downloadSources>
<downloadJavadocs>true</downloadJavadocs>
</configuration>
</plugin>
</plugins>
</build>
我已经安装了 m2eclipse,并且还检查Download Artifact Sources/Javadoc
了设置中的选项。
当我运行时mvn eclipse:eclipse
,它不会显示任何警告。但是没有下载 javadoc.jar
文件。