經過maven下載源碼和javadoc方法

1:Maven命令下載源碼和javadocs

當在IDE中使用Maven時若是想要看引用的jar包中類的源碼和javadoc須要經過maven命令下載這些源碼,而後再進行引入,經過mvn命令可以容易的達到這個目的:html

  

  1. mvn dependency:sources
  2. mvn dependency:resolve -Dclassifier=javadoc

命令使用方法:首先進入到相應的pom.xml目錄中,而後執行以上命令:java

 

第一個命令是嘗試下載在pom.xml中依賴的文件的源代碼。eclipse

第二個命令:是嘗試下載對應的javadocsmaven

可是有可能一些文件沒有源代碼或者javadocsspa

reference.net

2:經過配置文件添加

打開maven配置文件 setting.xml文件(.../.m2/settings.xml) 增長以下配置:
[html]  view plain  copy
 
 
 
  1. <profiles>  
  2. <profile>  
  3.     <id>downloadSources</id>  
  4.     <properties>  
  5.         <downloadSources>true</downloadSources>  
  6.         <downloadJavadocs>true</downloadJavadocs>             
  7.     </properties>  
  8. </profile>  
  9. </profiles>  
  10.   
  11. <activeProfiles>  
  12.   <activeProfile>downloadSources</activeProfile>  
  13. </activeProfiles>  

3:配置eclipse

Window > Preferences > Maven and checking the "Download Artifact Sources" and "Download Artifact JavaDoc" options
 
 
 
相關文章
相關標籤/搜索