diff options
author | Jonathan Nieder <jrn@google.com> | 2012-12-03 16:08:04 -0800 |
---|---|---|
committer | Jonathan Nieder <jrn@google.com> | 2012-12-04 15:37:42 -0800 |
commit | 78009782cdabdba42841f2a71fbd5867f2ae683f (patch) | |
tree | a17f08bb0f076ba41fd019b731083ea7e4a5ae60 /org.eclipse.jgit.pgm/META-INF | |
parent | 345ab401ce27e9d4cb4002edd7f8e732b5e2e6fc (diff) | |
download | jgit-78009782cdabdba42841f2a71fbd5867f2ae683f.tar.gz jgit-78009782cdabdba42841f2a71fbd5867f2ae683f.zip |
archive: Add tar support
Unlike ZIP files, tar files do not treat symlinks as ordinary files
with a different mode, so tar support involves a little more code than
would be ideal.
Change-Id: Ica2568f4a0e443bf4b955ef0c029bc8eec62d369
Diffstat (limited to 'org.eclipse.jgit.pgm/META-INF')
-rw-r--r-- | org.eclipse.jgit.pgm/META-INF/MANIFEST.MF | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.jgit.pgm/META-INF/MANIFEST.MF b/org.eclipse.jgit.pgm/META-INF/MANIFEST.MF index 247f93cb20..b2a988c3a9 100644 --- a/org.eclipse.jgit.pgm/META-INF/MANIFEST.MF +++ b/org.eclipse.jgit.pgm/META-INF/MANIFEST.MF @@ -7,6 +7,7 @@ Bundle-Vendor: %provider_name Bundle-Localization: plugin Bundle-RequiredExecutionEnvironment: J2SE-1.5 Import-Package: org.apache.commons.compress.archivers;version="[1.3,2.0)", + org.apache.commons.compress.archivers.tar;version="[1.3,2.0)", org.apache.commons.compress.archivers.zip;version="[1.3,2.0)", org.eclipse.jgit.api;version="[2.2.0,2.3.0)", org.eclipse.jgit.api.errors;version="[2.2.0,2.3.0)", |