------ Attach Library Sources ------ Edwin Punzalan ------ 7 July 2007 ------ Attach Library Sources and Javadocs Artifacts with sources deployed can be attached to Eclipse libraries using <<>>. Javadocs may be attached using <<>> The sources and javadocs of the libraries exist in the repository so that the plugin can download it and attach it. 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 [...] [...] [...] +-----