summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrzegorz Kossakowski <grek@google.com>2009-08-10 16:25:29 -0700
committerGrzegorz Kossakowski <grek@google.com>2009-08-12 15:41:41 -0700
commite3b9573f607b9e7a48c6dbe59d8ec2eefbe03fe7 (patch)
treece865b8ed6638bec2910c4b3eebc195e7ed78119
parent16722229b13c57315aeb1c86de25823e65bd040a (diff)
downloadgimd-e3b9573f607b9e7a48c6dbe59d8ec2eefbe03fe7.tar.gz
Add JGit as dependency of Gimd.
SNAPSHOT version is being used right now because PathSuffixFilter cannot be found in current released version of JGit. Signed-off-by: Grzegorz Kossakowski <grek@google.com>
-rw-r--r--pom.xml16
1 files changed, 15 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index 0d64048..95620cd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -285,7 +285,21 @@ limitations under the License.
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.6</version>
- </dependency>
+ </dependency>
+
+ <dependency>
+ <groupId>org.spearce</groupId>
+ <artifactId>jgit</artifactId>
+ <version>0.5.0-SNAPSHOT</version>
+ <scope>compile</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>com.jcraft</groupId>
+ <artifactId>jsch</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+
</dependencies>
<repositories>