diff options
author | Jonathan Tan <jonathantanmy@google.com> | 2018-02-28 14:36:44 -0800 |
---|---|---|
committer | Jonathan Nieder <jrn@google.com> | 2018-06-04 21:59:20 -0700 |
commit | f516c1df9d18ff9aaba1dd5668db1776d42dd2bb (patch) | |
tree | 464ad8af58c01d1226785bc09c83d3a4fe2498af /org.eclipse.jgit.http.test/pom.xml | |
parent | c32a62cd4abf5529c9e56a1c8140de76c107ff93 (diff) | |
download | jgit-f516c1df9d18ff9aaba1dd5668db1776d42dd2bb.tar.gz jgit-f516c1df9d18ff9aaba1dd5668db1776d42dd2bb.zip |
Add protocol v2 support in http
Teach UploadPack to support protocol v2 with non-bidirectional pipes,
and add support to the HTTP protocol for v2. This is only activated if
the repository's config has "protocol.version" equal to 2.
Change-Id: I093a14acd2c3850b8b98e14936a716958f35a848
Helped-by: Matthias Sohn <matthias.sohn@sap.com>
Signed-off-by: Jonathan Tan <jonathantanmy@google.com>
Signed-off-by: Jonathan Nieder <jrn@google.com>
Diffstat (limited to 'org.eclipse.jgit.http.test/pom.xml')
-rw-r--r-- | org.eclipse.jgit.http.test/pom.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/org.eclipse.jgit.http.test/pom.xml b/org.eclipse.jgit.http.test/pom.xml index 6eef6cea56..06eb0e89e7 100644 --- a/org.eclipse.jgit.http.test/pom.xml +++ b/org.eclipse.jgit.http.test/pom.xml @@ -84,6 +84,13 @@ </dependency> <dependency> + <groupId>org.hamcrest</groupId> + <artifactId>hamcrest-library</artifactId> + <scope>test</scope> + <version>[1.1.0,2.0.0)</version> + </dependency> + + <dependency> <groupId>org.eclipse.jgit</groupId> <artifactId>org.eclipse.jgit.junit.http</artifactId> <version>${project.version}</version> |