Direct Download 7.0.0.202409031743-r
- org.eclipse.jgit.jar (Raw API library)
- org.eclipse.jgit-javadoc.jar (JavaDoc archive)
- jgit.sh (Self-contained command line executable)
- JGit 7.0.0.202409031743-r Projects Overview (Maven Site)
- org.eclipse.jgit JavaDoc (online JavaDoc)
- JGit API changes since previous release (online japicmp API changes report)
Maven Repository
JGit can be consumed in a Maven build. Multiple artifacts are available, depending on the application's requirements:
<repositories> <repository> <id>jgit-repository</id> <url>https://repo.eclipse.org/content/groups/releases/</url> </repository> </repositories> <!-- Core Library --> <dependencies> <dependency> <groupId>org.eclipse.jgit</groupId> <artifactId>org.eclipse.jgit</artifactId> <version>7.0.0.202409031743-r</version> </dependency> </dependencies> <!-- Smart HTTP Servlet --> <dependencies> <dependency> <groupId>org.eclipse.jgit</groupId> <artifactId>org.eclipse.jgit.http.server</artifactId> <version>7.0.0.202409031743-r</version> </dependency> </dependencies> <!-- AWT UI Helpers --> <dependencies> <dependency> <groupId>org.eclipse.jgit</groupId> <artifactId>org.eclipse.jgit.ui</artifactId> <version>7.0.0.202409031743-r</version> </dependency> </dependencies> <!-- JUnit Test Support --> <dependencies> <dependency> <groupId>org.eclipse.jgit</groupId> <artifactId>org.eclipse.jgit.junit</artifactId> <version>7.0.0.202409031743-r</version> </dependency> </dependencies>
JGit is also available from Maven central: JGit on Maven central
For SNAPSHOT versions of the upcoming release, the following repository can be used:
<repository> <id>jgit-snapshot-repository</id> <url>https://repo.eclipse.org/content/groups/jgit/</url> <snapshots> <enabled>true</enabled> </snapshots> </repository>
P2 Installation
JGit can be installed from the EGit repository:
- Main Site: https://download.eclipse.org/egit/updates (Recommended)
- 2024-09 Site (Eclipse 2024-09 uses JGit 7.0.0): https://download.eclipse.org/releases/2024-09
Development Builds
If you like to use the latest development version, you can install JGit from the EGit nightly repository:
- development build (master branch): https://download.eclipse.org/egit/updates-nightly.
- maintenance build (latest stable branch): https://download.eclipse.org/egit/updates-stable-nightly.
You can also build JGit from scratch following our contributor guide.