使用如下的maven配置,如果它是第三方开源软件包,如何获取该特定版本的源代码。
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.2</version>
<scope>test</scope>
</dependency>
答案 0 :(得分:2)
您也可以使用maven eclipse plugin。
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
<downloadSources>true</downloadSources>
<downloadJavadocs>true</downloadJavadocs>
... other stuff ...
</configuration>
</plugin>
答案 1 :(得分:0)
你可以使用maven依赖插件和分类器'sources'。
http://maven.apache.org/plugins/maven-dependency-plugin/examples/using-dependencies-sources.html
如果需要,您可以将其缩小到特定的组/工件。