Skip to content

Commit

Permalink
Update readme with maven coordinates
Browse files Browse the repository at this point in the history
  • Loading branch information
Col-E committed May 10, 2023
1 parent 5fcfc7c commit 328b379
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,23 @@ But that's not all it does. That's just what that one comment says. Some other f
- The end central directory entry is found by scanning from the end of the file, rather than from the beginning.
- The central directory values are authoritative. Names/values defined by the local file headers are ignored.
- The file data of local file headers is not size bound by the file header's compressed size field. Instead, it uses the central directory header's declared size.
- Class names are allowed to end in trailing `/` which most tools interpret as directories.
- Class names are allowed to end in trailing `/` which most tools interpret as directories.

## Usage

Maven dependency:
```xml
<dependency>
<groupId>software.coley</groupId>
<artifactId>lljzip</artifactId>
<version>${zipVersion}</version> <!-- See release page for latest version -->
</dependency>
```

Gradle dependency:
```groovy
implementation group: 'software.coley', name: 'lljzip', version: zipVersion
implementation "software.coley:lljzip:${zipVersion}"
```

For example usage see the [tests](src/test/java/software/coley/llzip).

0 comments on commit 328b379

Please sign in to comment.