diff options
author | Jonathan Tan <jonathantanmy@google.com> | 2023-04-18 15:20:02 -0700 |
---|---|---|
committer | Jonathan Tan <jonathantanmy@google.com> | 2023-07-18 14:21:48 -0700 |
commit | 49beb5ae519e429d8868b8afe24007ae2d17003a (patch) | |
tree | 2f62e063dae6bd9d0f0eb040160362913a1cf5b5 /org.eclipse.jgit/pom.xml | |
parent | 5dc63514d07fbbbd55a287047d756984169cb23d (diff) | |
download | jgit-49beb5ae519e429d8868b8afe24007ae2d17003a.tar.gz jgit-49beb5ae519e429d8868b8afe24007ae2d17003a.zip |
CommitGraphWriter: write changed-path filters
Add support for writing the BIDX and BDAT chunks of the commit graph
file, as described in man gitformat-commit-graph(5). The ability to read
such chunks will be added in a subsequent commit.
This work is based on earlier work by Kyle Zhao
(Ib863782af209f26381e3ca0a2c119b99e84b679c).
Change-Id: Ic18e6f0eeec7da1e1ff31751aabda5e6952dbe6e
Signed-off-by: kylezhao <kylezhao@tencent.com>
Signed-off-by: Jonathan Tan <jonathantanmy@google.com>
Diffstat (limited to 'org.eclipse.jgit/pom.xml')
-rw-r--r-- | org.eclipse.jgit/pom.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/org.eclipse.jgit/pom.xml b/org.eclipse.jgit/pom.xml index 9d4e5b51a9..23f5d2392c 100644 --- a/org.eclipse.jgit/pom.xml +++ b/org.eclipse.jgit/pom.xml @@ -46,6 +46,12 @@ <artifactId>slf4j-api</artifactId> </dependency> + <dependency> + <groupId>commons-codec</groupId> + <artifactId>commons-codec</artifactId> + <version>1.15</version> + </dependency> + </dependencies> <build> |