如何在源代碼中安裝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>
,但我想從命令行做(以使其更普遍)。
你想要哪些來源? – 2011-02-24 09:14:49
在我的.m2文件夾中 – IAdapter 2011-02-24 09:17:28