Looking for decent Git libraries for Java -
i looking decent git library java stand-alone applications.
can recommend any?
i believe can use jgit in java application.
the main page includes:
jgit has few dependencies, making suitable embedding in java application, whether or not application taking advantage of other eclipse or osgi technologies.
the download page mentions that:
jgit can consumed in maven build.
multiple artifacts available, depending on application's requirements:
see full pom.xl in jgit-cookbook/blob/master/pom.xml
:
extract:
<repositories> <repository> <id>jgit-repository</id> <url>http://download.eclipse.org/jgit/maven</url> </repository> </repositories> <!-- core library --> <dependencies> <dependency> <groupid>org.eclipse.jgit</groupid> <artifactid>org.eclipse.jgit</artifactid> <version>3.4.1.201406201815-r</version> </dependency> </dependencies>
the exact list of git commands supported not up-to-date (as the bug 317482 illustrates):
update september 2013 - july 2014: all commands below available.
Comments
Post a Comment