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

maven source javadoc下载

时间:2014-09-19 12:19:15      阅读:260      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   os   java   ar   for   art   sp   

1.只下载项目的sources 和 javadoc(省时间)

在pom.xml 

<build>
<finalName>spring-security-loginform-database</finalName>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
<downloadSources>true</downloadSources>
                    <downloadJavadocs>true</downloadJavadocs>
</configuration>
</plugin>
</plugins>
</build>

2.本地仓库下载 sources 和javadoc

setting.xml

<profiles>
<profile>
    <id>downloadSources</id>
    <properties>
        <downloadSources>true</downloadSources>
        <downloadJavadocs>true</downloadJavadocs>           
    </properties>
</profile>
</profiles>


<activeProfiles>
  <activeProfile>downloadSources</activeProfile>
</activeProfiles>

参考:

http://stackoverflow.com/questions/2059431/get-source-jars-from-maven-repository

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

maven source javadoc下载

标签:blog   http   io   os   java   ar   for   art   sp   

原文地址:http://my.oschina.net/macleo/blog/315907

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