Is there a way I can configure maven to always download sources and javadocs? Specifying -DdownloadSources=true -DdownloadJavadocs=true everytime (which usually goes along with running mvn compile twice because I forgot the first time) becomes rather tedious.

link|improve this question

Is this for the eclipse plugin? You shouldn't have to run that very often anyway... – sjr Apr 25 '11 at 17:04
No, it is for the command line program. I don't have to run it very often, but it would be great if I had to run it never! – schmmd Apr 25 '11 at 17:22
What is the command line? This is when you do mvn eclipse:eclipse right? – sjr Apr 25 '11 at 17:44
feedback

3 Answers

up vote 7 down vote accepted

Open your settings.xml file (.../.m2/settings.xml). Add a section with the properties added. Then make sure the activeProfiles includes the new profile.

<profiles>
<profile>
    <id>downloadSources</id>
    <properties>
        <downloadSources>true</downloadSources>
        <downloadJavadocs>true</downloadJavadocs>           
    </properties>
</profile>
</profiles>

<activeProfiles>
  <activeProfile>downloadSources</activeProfile>
</activeProfiles>
link|improve this answer
feedback

I think it can be done per plugin. See this chapter from the Maven book.

You might be able to configure the dependency plugin to download sources (even though I haven't tried it myself :-).

link|improve this answer
feedback

Not sure, but you should be able to do something by setting a default active profile in your settings.xml

See

See http://maven.apache.org/guides/introduction/introduction-to-profiles.html

link|improve this answer
Ah! Just exactly as described by @xecaps12 – paulg_at_bsl Apr 25 '11 at 19:07
feedback

Your Answer

 
or
required, but never shown

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