Maven – Get source code for Jar

In Maven, you can get source code for project dependencies in most IDEs like this :


$ mvn dependency:sources
$ mvn dependency:resolve -Dclassifier=javadoc
  1. Get source code for Jar
  2. 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>

mkyong

Founder of Mkyong.com, passionate Java and open-source technologies. If you enjoy my tutorials, consider making a donation to these charities.

0 Comments
Most Voted
Newest Oldest
Inline Feedbacks
View all comments