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

I'm using the Maven Eclipse plug-in to to add dependencies to my project. After setting a dependency, I right-clicked my project, selected Maven->Download Sources (and JavaDoc) but they were not automatically attached to the dependency's classes. Where are the source code and JavaDoc files stored?

Note: this is my first day using Maven so my understanding of Download Sources may be way off.

share|improve this question

2 Answers

By default, Maven should download dependencies sources and JavaDocs to its local repository. If you don't know where is your local Maven repository, check Maven settings.xml file You can read more here

share|improve this answer
Thanks, I found maven repository and found the (defaulted) junit jar, source and JavaDoc but the source and JavaDoc for the commons-threadpool (the Dependency that I added myself) are not in the same folder as the threadpool jar. Is it possible that the source/JavaDoc failed to download or is it more likely that I have config issues? Note: I added the suggested plugin line to my pom file as your link suggested. – Haphazard Dec 18 '10 at 21:27
If maven is trying to download sources/javadocs and fails to do so there should be a relevant message on the eclipse maven console. – dimitrisli Dec 20 '10 at 23:07
After downloading sources and javadoc I had to restart eclipse before eclipse registered the fresh javadoc tooltips – tjb Feb 28 '12 at 14:39

if you don't have a <localRepository> entry under <settings> in your settings.xml, they will by default go in $HOME/.m2. To specify a different location, add (or uncomment) localRepository:

<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" 
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
          xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">

  <localRepository>/path/to/local/repo</localRepository>
share|improve this answer

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.