Skip to content
This repository was archived by the owner on May 31, 2022. It is now read-only.

Commit 2e82271

Browse files
committed
Added New Extraction Methods
1 parent e7b4eb3 commit 2e82271

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
jarchivelib
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

87
A simple archiving and compression library for Java that provides a thin and easy-to-use API layer on top of the
98
powerful and feature-rich [org.apache.commons.compress].

src/main/java/org/rauschig/jarchivelib/FileType.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)