Updated version/readme

This commit is contained in:
nathan 2017-02-01 00:46:05 +01:00
parent bf7d2d82c6
commit 303a138db3
3 changed files with 6 additions and 7 deletions

View File

@ -1,7 +1,7 @@
- Dorkbox Cab Parser - Apache 2.0 License
https://github.com/dorkbox
Copyright 2012, dorkbox, llc
Parse and extract data from Microsoft LZX compressed .cab files in Java 6+
Parse and extract data from Microsoft LZX compressed .cab files for Java 6+
- Dorkbox Utils - Apache 2.0 License

View File

@ -12,20 +12,19 @@ Microsoft CAB file format: http://msdn.microsoft.com/en-us/library/bb417343.aspx
<h4>We now release to maven!</h4>
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.
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.
This project **includes** some utility classes, which are an extremely small subset of a much larger library; including only what is *necessary* for this particular project to function. Additionally this project is **kept in sync** with the utilities library, so "jar hell" is not an issue, and the latest release will always include the same utility files as all other projects in the dorkbox repository at that time.
Please note that the utility classes have their source code included in the release, and eventually the entire utility library will be provided as a dorkbox repository.
```
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>CabParser</artifactId>
<version>2.9</version>
<version>2.10</version>
</dependency>
```
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/
<h2>License</h2>

View File

@ -89,7 +89,7 @@ public final class CabParser {
*/
public static
String getVersion() {
return "2.9";
return "2.10";
}
public Enumeration<Object> entries() {