When JGIT jar is bundled with projects, it often needed to inspect JGIT sources in order to look for documentation and implementation. The sources are also very useful during debugging. The patch adds source plugin that builds source jar, so the matching version of the source.jar could be easily bundled. The javadoc plugin generates ready to use archive with javadoc. --- jgit-maven/jgit/pom.xml | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 deletions(-) diff --git a/jgit-maven/jgit/pom.xml b/jgit-maven/jgit/pom.xml index c370783..75c4b75 100644 --- a/jgit-maven/jgit/pom.xml +++ b/jgit-maven/jgit/pom.xml @@ -169,6 +169,26 @@ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. </includes> </configuration> </plugin> + <plugin> + <artifactId>maven-source-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <artifactId>maven-javadoc-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build> <dependencies> -- 1.6.0.2.1172.ga5ed0 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html