12

我的 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文件。

4

3 回答 3

30

在 Eclipse 中转到Windows->preferences->Maven并在此处选中带有下载源的框,并且还可以下载 javadoc。这应该够了吧。

于 2013-06-13T12:30:10.560 回答
1

你可以从这个位置下载http://repo.spring.io/libs-release/org/springframework/spring/

于 2014-07-19T07:48:08.523 回答
0

使用 Maven 项目,只需在命令行中运行:

mvn 依赖:来源

于 2020-01-02T14:43:24.210 回答