Skip to content

Commit 328b379

Browse files
committed
Update readme with maven coordinates
1 parent 5fcfc7c commit 328b379

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

README.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,23 @@ But that's not all it does. That's just what that one comment says. Some other f
2121
- The end central directory entry is found by scanning from the end of the file, rather than from the beginning.
2222
- The central directory values are authoritative. Names/values defined by the local file headers are ignored.
2323
- 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.
24-
- Class names are allowed to end in trailing `/` which most tools interpret as directories.
24+
- Class names are allowed to end in trailing `/` which most tools interpret as directories.
25+
26+
## Usage
27+
28+
Maven dependency:
29+
```xml
30+
<dependency>
31+
<groupId>software.coley</groupId>
32+
<artifactId>lljzip</artifactId>
33+
<version>${zipVersion}</version> <!-- See release page for latest version -->
34+
</dependency>
35+
```
36+
37+
Gradle dependency:
38+
```groovy
39+
implementation group: 'software.coley', name: 'lljzip', version: zipVersion
40+
implementation "software.coley:lljzip:${zipVersion}"
41+
```
42+
43+
For example usage see the [tests](src/test/java/software/coley/llzip).

0 commit comments

Comments
 (0)