Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to install Maven artifact with sources?

so later I don't need to open a project in eclipse to see some code.

EDIT: I do know I can add to pom.xml this code

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

but I would like to do it from command line(to make it more universal).

share|improve this question
And where do you want those sources? – Sean Patrick Floyd Feb 24 '11 at 9:14
in my .m2 folder – IAdapter Feb 24 '11 at 9:17

3 Answers

up vote 23 down vote accepted

To download sources for your dependencies:

mvn eclipse:eclipse -DdownloadSources=true

To attach sources to an installation:

mvn source:jar install

It's also preferable to use the goal source:jar-no-fork in your pom as described on the maven-source-plugin page.

share|improve this answer
but the sources of installed snapshot do not exists :( – IAdapter Feb 24 '11 at 9:22
it works great, thx!!! – IAdapter Feb 24 '11 at 9:29

Simple, get your sources and JavaDocs:

mvn dependency:resolve -Dclassifier=javadoc
mvn dependency:resolve -Dclassifier=sources
share|improve this answer

It is quite easy with eclipse, right click the project in project explorer view, click maven menu item , then click download sources..

share|improve this answer
but the sources of installed snapshot do not exists :( I get error 24.02.11 10:23:23 CET: Can't download java-source for artifact my:project:1.2.18-SNAPSHOT – IAdapter Feb 24 '11 at 9:23
Well, you have clarified your question.. My answer is not valid anymore. – Gursel Koca Feb 24 '11 at 9:24
why? maven is about doing things automatically. I cant access it because the jar with it was not created. – IAdapter Feb 24 '11 at 9:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.