最佳答案
如何使用源安装 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>
但是我想通过命令行来实现(使它更加通用)。