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.
|
feedback
|
|
Open your settings.xml file (.../.m2/settings.xml). Add a section with the properties added. Then make sure the activeProfiles includes the new profile.
| |||
|
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 :-). | |||
|
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 | |||
|
feedback
|
mvn eclipse:eclipseright? – sjr Apr 25 '11 at 17:44