Maven Get source code for Jar
By:Roy.LiuLast updated:2019-08-17
In Maven, you can get source code for project dependencies in most IDEs like this :
$ mvn dependency:sources $ mvn dependency:resolve -Dclassifier=javadoc
- Get source code for Jar
- Get javadoc for Jar, normally, developers don’t provide this.
1. Eclipse IDE
In Eclipse IDE, it’s better to use the maven eclipse plugin:
$ mvn eclipse:eclipse -DdownloadSources=true $ mvn eclipse:eclipse -DdownloadSources=true -DdownloadJavadocs=false
Or
pom.xml
<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <configuration> <downloadSources>true</downloadSources> <downloadJavadocs>false</downloadJavadocs> </configuration> </plugin> </plugins> </build>
From:一号门
COMMENTS