zoukankan      html  css  js  c++  java
  • Download/Attach source-code/java-docs with maven dependencies

    I am using Maven in my projects from last couple of years, and the automatically downloading the Jars from repository feature of maven is really helpful for developers. But If you are using Eclipse and want to read/analyse Source Code or Java Doc of API then you need the jar file that contains the Source code and java doc of the API, but unfortunately maven does not download and attach the source code and java doc of the APIs automatically.

    Maven provides some different ways to download and attach that source code and Java Doc:

    • Using maven eclipse plugin
    • Using maven dependency plugin

    Note: The sources and javadocs of the libraries must exist in the repository so that the plugin can download it and attach it.

    1. Maven eclipse plugin:

    Maven dependencies that are deployed with the source and javadocs can be downloaded and attached to the Eclipse library by using maven-eclipse-plugin. It can be done by:

    • passing command-line argument to the maven-eclipse-plugin, or
    • by declaring in the pom.xml

    1.1 passing command-line argument to maven-eclipse-plugin:

    This example shows that how to do this by passing command line argument to the maven-eclipse-plugin:

    mvn eclipse:eclipse -DdownloadSources=true -DdownloadJavadocs=true

    1.2 declaring in the pom.xml

    This sample pom shows that how to declare downloadSources and downloadJavadocs configuration in pom.xml

    <project>

    <build>

    <plugins>

    <plugin>

    <groupId>org.apache.maven.plugins</groupId>

    <artifactId>maven-eclipse-plugin</artifactId>

    <configuration>

    <downloadSources>true</downloadSources>

    <downloadJavadocs>true</downloadJavadocs>

    </configuration>

    </plugin>

    </plgins>

    </build>

    </project>

    2. Maven dependency plugin:

    maven-dependency-plugin provides a goal named sources that resolves the project source dependencies from the repository.

    usage:

    mvn dependency:sources

    mvn dependency:resolve -Dclassifier=javadoc

    This is useful when you want the source attachments downloaded to your local repository and you don’t want to use the eclipse plugin to do this since the eclipse plugin creates/overwrites the eclipse files.

  • 相关阅读:
    CSS进阶-深入理解vertical-align和line-height的关系
    困难的串【转】
    【转】常用 Git 命令清单
    程序员常用等宽字体
    IE的特有属性hasLayout和BFC
    css深入理解之行高line-height
    mysql 索引优化,不走索引的原因
    php解决高并发(文件锁)
    mysql索引详解
    http错误代码
  • 原文地址:https://www.cnblogs.com/sos-blue/p/3515503.html
Copyright © 2011-2022 走看看