Comment faire pour installer artefact Maven avec les sources?
plus tard, je n'ai pas besoin d'ouvrir un projet dans eclipse pour voir un peu de code.
EDIT: Je sais que je peux ajouter pom.xml ce code
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
mais je voudrais le faire en ligne de commande(pour le rendre plus universel).