1:maven command to download the source code and Javadocs
When using Maven in the IDE, if you want to see the source code and Javadoc of the classes in the referenced jar package need to download the source code through the MAVEN command and then introduce it, it is easy to achieve this with the MVN command:
mvn dependency:sourcesmvn dependency:resolve -Dclassifier=javadoc
How to use the command: first go to the appropriate Pom.xml directory, and then execute the above command:
The first command is to try to download the source code of the files that are dependent on pom.xml.
The second command: is to try to download the corresponding Javadocs
However, it is possible that some files do not have source code or Javadocs
Reference
2: Add the configuration file to open Maven profile Setting.xml file (.../.m2/settings.xml) by adding the following configurations:
[HTML]View Plaincopy
- <profiles>
- <profile>
- <ID>downloadsources</ID>
- <properties>
- <downloadsources>true</downloadsources>
- <downloadjavadocs>true</downloadjavadocs>
- </Properties>
- </profile>
- </Profiles>
- <activeprofiles>
- <activeprofile>downloadsources</activeprofile>
- </activeprofiles>
3: Configure Eclipsewindow > Preferences > Maven and checking the "Download Artifact Sources" and "Download Artifact JavaDoc" Options