码迷,mamicode.com
首页 > 编程语言 > 详细

maven 下载 源码和javadoc命令

时间:2016-01-21 19:46:09      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:

打开maven配置文件 setting.xml文件(.../.m2/settings.xml) 增加如下配置:

  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>  
  14. 3:配置eclipse

    Window > Preferences > Maven and checking the "Download Artifact Sources" and "Download Artifact JavaDoc" options
  15. 技术分享

然后项目执行eclipse:eclipse

 

转载:http://blog.csdn.net/topwqp/article/details/8902863

maven 下载 源码和javadoc命令

标签:

原文地址:http://www.cnblogs.com/flywang/p/5148935.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!