如何使用命令行来源安装Maven工件?

如何安装Maven工件的源代码?

所以后来我不需要在eclipse中打开一个项目来查看一些代码。

编辑:我知道我可以添加到pom.xml这个代码

<plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> 

但我想从命令行(使其更通用)。

要为您的依赖项下载源代码:

 mvn eclipse:eclipse -DdownloadSources=true 

将源添加到安装中:

 mvn source:jar install 

在maven-source-plugin页面描述的那样,最好在你的pom中使用目标source:jar-no-fork

简单来说,获取你的源代码和JavaDocs:

 mvn dependency:resolve -Dclassifier=javadoc mvn dependency:resolve -Dclassifier=sources 

请使用mvn源码:jar install来安装Maven工件。

使用eclipse很容易,在项目资源pipe理器视图中右键单击项目,单击maven菜单项,然后单击下载源。