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.

  • 相关阅读:
    Linux下常用的3种软件安装方式
    解决navicate 连接mysql数据库中文乱码的问题
    Lua 遍历Linux目录下的文件夹
    ubuntu 更改源
    ubuntu 下安装配置LAMP
    简述configure、pkg-config、pkg_config_path三者的关系
    linux 下库的深入调研
    Linux下的库操作工具-nm、ar、ldd、ldconfig和ld.so
    linux命令strings
    c++隐式类型转换和explicit
  • 原文地址:https://www.cnblogs.com/sos-blue/p/3515503.html
Copyright © 2011-2022 走看看