CabParser/README.md

29 lines
1.3 KiB
Markdown
Raw Normal View History

2015-01-29 02:46:49 +01:00
CAB PARSER
===========
2014-12-18 18:21:38 +01:00
Provides a means to parse and extract data from Microsoft CAB files, from Java.
Specifically, this project was created to extract files from within a .cab which are compressed via the LZX compression algorithm.
2014-12-18 18:21:38 +01:00
Microsoft CAB file format: http://msdn.microsoft.com/en-us/library/bb417343.aspx
- This is for cross-platform use, specifically - linux 32/64, mac 32/64, and windows 32/64. Java 6+
2015-11-22 21:19:24 +01:00
<h4>We now release to maven!</h4>
2015-11-22 21:19:24 +01:00
2015-12-15 01:31:30 +01:00
There is a hard dependency in the POM file for the utilities library, which is an extremely small subset of a much larger library; including only what is *necessary* for this particular project to function.
2015-11-22 21:19:24 +01:00
2015-12-15 01:31:30 +01:00
This project is **kept in sync** with the utilities library, so "jar hell" is not an issue. Please note that the util library (in it's entirety) is not added since there are **many** dependencies that are not *necessary* for this project. No reason to require a massive amount of dependencies for one or two classes/methods.
2015-11-22 21:19:24 +01:00
```
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>CabParser</artifactId>
<version>1.1</version>
</dependency>
```
2015-12-22 10:17:05 +01:00
Or if you don't want to use Maven, you can access the files directly here:
https://oss.sonatype.org/content/repositories/releases/com/dorkbox/CabParser/
https://oss.sonatype.org/content/repositories/releases/com/dorkbox/CabParser-Dorkbox-Util/