This repository was archived by the owner on May 31, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
src/main/java/org/rauschig/jarchivelib Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 11jarchivelib
22===========
33
4- [ ![ Maven Central] ( https://maven-badges.herokuapp.com/maven-central/org.rauschig/jarchivelib/badge.svg )] ( https://maven-badges.herokuapp.com/maven-central/org.rauschig/jarchivelib/ )
5- [ ![ Build Status] ( https://travis-ci.org/thrau/jarchivelib.svg?branch=master )] ( https://travis-ci.org/thrau/jarchivelib )
6- [ ![ Coverage Status] ( https://coveralls.io/repos/thrau/jarchivelib/badge.svg )] ( https://coveralls.io/r/thrau/jarchivelib )
4+ THIS FORK IS A SPECIAL FORK WHICH ADDS NEW EXTRACTION METHODS TO THE CODE. USED FOR
5+ MINECRAFTMEDIALIBRARY.
76
87A simple archiving and compression library for Java that provides a thin and easy-to-use API layer on top of the
98powerful and feature-rich [ org.apache.commons.compress] .
Original file line number Diff line number Diff line change @@ -49,10 +49,14 @@ public final class FileType {
4949 add (".tgz" , TAR , GZIP );
5050 add (".tar.bz2" , TAR , BZIP2 );
5151 add (".tbz2" , TAR , BZIP2 );
52+ add (".tar.xz" , TAR , XZ );
53+ add (".txz" , TAR , XZ );
5254 // archive formats
5355 add (".7z" , SEVEN_Z );
5456 add (".a" , AR );
5557 add (".ar" , AR );
58+ add (".deb" , AR );
59+ add (".rpm" , CPIO );
5660 add (".cpio" , CPIO );
5761 add (".dump" , DUMP );
5862 add (".jar" , JAR );
You can’t perform that action at this time.
0 commit comments