blob: 528d936cb86e9c4fca61883a37ceaa061cfb65c8 [file] [log] [blame]
<h2>Direct Download @VERSION@</h2>
<ul>
<li><a href="http://download.eclipse.org/jgit/maven/org/eclipse/jgit/org.eclipse.jgit/@VERSION@/org.eclipse.jgit-@VERSION@.jar">org.eclipse.jgit.jar</a> (Raw API library)</li>
<li><a href="http://download.eclipse.org/jgit/maven/org/eclipse/jgit/org.eclipse.jgit/@VERSION@/org.eclipse.jgit-@VERSION@-javadoc.jar">org.eclipse.jgit-javadoc.jar</a> (JavaDoc archive)</li>
<li><a href="http://download.eclipse.org/jgit/maven/org/eclipse/jgit/org.eclipse.jgit.pgm/@VERSION@/org.eclipse.jgit.pgm-@VERSION@.sh">jgit.sh</a> (Self-contained command line executable)</li>
</ul>
Find the list of older JGit versions <a href="http://wiki.eclipse.org/JGit/FAQ#How_to_inspect_the_git_index">here</a>.
<h2>Maven Repository</h2>
<p>JGit can be consumed in a Maven build. Multiple artifacts are available,
depending on the application's requirements:</p>
<pre>
&lt;repositories&gt;
&lt;repository&gt;
&lt;id&gt;jgit-repository&lt;/id&gt;
&lt;url&gt;http://download.eclipse.org/jgit/maven&lt;/url&gt;
&lt;/repository&gt;
&lt;/repositories&gt;
&lt;!-- Core Library --&gt;
&lt;dependencies&gt;
&lt;dependency&gt;
&lt;groupId&gt;org.eclipse.jgit&lt;/groupId&gt;
&lt;artifactId&gt;org.eclipse.jgit&lt;/artifactId&gt;
&lt;version&gt;@VERSION@&lt;/version&gt;
&lt;/dependency&gt;
&lt;/dependencies&gt;
&lt;!-- Smart HTTP Servlet --&gt;
&lt;dependencies&gt;
&lt;dependency&gt;
&lt;groupId&gt;org.eclipse.jgit&lt;/groupId&gt;
&lt;artifactId&gt;org.eclipse.jgit.http.server&lt;/artifactId&gt;
&lt;version&gt;@VERSION@&lt;/version&gt;
&lt;/dependency&gt;
&lt;/dependencies&gt;
&lt;!-- AWT UI Helpers --&gt;
&lt;dependencies&gt;
&lt;dependency&gt;
&lt;groupId&gt;org.eclipse.jgit&lt;/groupId&gt;
&lt;artifactId&gt;org.eclipse.jgit.ui&lt;/artifactId&gt;
&lt;version&gt;@VERSION@&lt;/version&gt;
&lt;/dependency&gt;
&lt;/dependencies&gt;
&lt;!-- JUnit Test Support --&gt;
&lt;dependencies&gt;
&lt;dependency&gt;
&lt;groupId&gt;org.eclipse.jgit&lt;/groupId&gt;
&lt;artifactId&gt;org.eclipse.jgit.junit&lt;/artifactId&gt;
&lt;version&gt;@VERSION@&lt;/version&gt;
&lt;/dependency&gt;
&lt;/dependencies&gt;
</pre>
<h2>P2 Installation</h2>
<p>JGit can be installed from the <a href="http://www.eclipse.org/egit/">EGit</a> repository:</p>
<ul>
<li>Main Site: <a href="http://download.eclipse.org/egit/updates">http://download.eclipse.org/egit/updates</a> (Recommended)</li>
<li>Helios Site: <a href="http://download.eclipse.org/releases/helios">http://download.eclipse.org/releases/helios</a></li>
</ul>
<h2>Bleeding Edge Builds</h2>
<p>If you like to live on the bleeding edge, you can install JGit from the EGit nightly repository:</p>
<ul>
<li><a href="http://download.eclipse.org/egit/updates-nightly">http://download.eclipse.org/egit/updates-nightly</a>.</li>
</ul>
<p>You can also build JGit from scratch following our <a href="http://wiki.eclipse.org/EGit/Contributor_Guide#Builds">contributor guide</a>.</p>