Does anyone have any idea if you can find source JARs on maven repositories?
Source: http://tedwise.com/2010/01/27/maven-micro-tip-get-sources-and-javadocs/ |
|||||||||||||
|
|
When running eclipse from the command line ( mvn eclipse:eclipse )
|
|||
|
|
|
If a project creates a jar of the project sources and deploys it to a maven repository , then you'll find it :) Just FYI, sources artifacts are generally created by the maven-source-plugin. This plugin can bundle the main or test sources of a project into a jar archive and, as explained in Configuring Source Plugin:
The additional text given to describe an artifact ("-sources" or "-test-sources" here) is called a classifier. To declare a dependency on an artifact that uses a classifier, simply add the
Note that you generally don't do this, most IDEs provide support to download sources (and/or JavaDoc) from the main artifact without declaring explicitly a dependency on them. Finally, also note that some repository search engines allow to search for artifacts using the classifier (at least Nexus does with the advanced search). See this search for example. |
|||
|
|
|
you can find info in this related question: Get source jar files attached to Eclipse for Maven-managed dependencies
|
|||
|
|
|
The maven idea plugin for IntelliJ Idea allows you to specify whether or not sources and java doc should be resolved and downloaded
|
|||
|
|
|
You can, if they are uploaded. Generally they are called "frameworkname-version-source(s)" |
|||
|
|
|
if you're using eclipse you could also open Preferences > Maven and select Download Artifact Sources, this would let the pom.xml intact and keep your sources or java docs (if selected) just for development right at your machine location ~/.m2 |
|||
|
|
|
I have also used the eclipse plugin to get the project into the eclipse workspace. Since I've worked on a different project I saw that it is possible to work with eclipse but without the maven-eclipse-plugin. That makes it easier to use with different environments and enables the easy use of maven over eclipse. And that without changing the pom.xml-file. So, I recommend the approach of Gabriel Ramirez. |
|||
|
|

