I use Eclipse, Maven, and Java in my development. I use Maven to download dependencies (jar files and javadoc when available) and Maven\'s eclipse plug-in to generate the .p
From the Maven Eclipse Plugin FAQ
The following example shows how to do this in the command-line: mvn eclipse:eclipse -DdownloadSources=true -DdownloadJavadocs=true or in your pom.xml: [...] [...] [...] org.apache.maven.plugins maven-eclipse-plugin true true [...] [...] [...]
The following example shows how to do this in the command-line:
mvn eclipse:eclipse -DdownloadSources=true -DdownloadJavadocs=true
or in your pom.xml:
[...] [...] [...] org.apache.maven.plugins maven-eclipse-plugin true true [...] [...] [...]