Skip to content

Commit c59f2c8

Browse files
committed
Update README.md
1 parent 7aeb9cc commit c59f2c8

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

README.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,58 @@
22

33
> Java & Kotlin Parser & API For LevelZ File Format
44
5+
[![](https://jitpack.io/v/LevelZ-File/java-bindings.svg)](https://jitpack.io/#LevelZ-File/java-bindings)
6+
[![JitCi](https://jitci.com/gh/LevelZ-File/java-bindings/svg)](https://jitci.com/gh/LevelZ-File/java-bindings)
7+
58
## Overview
69

710
Provides Java & Kotlin Parsing/Support for the LevelZ File Format.
811

12+
### Download
13+
14+
Maven
15+
```xml
16+
<!-- Add JitPack Repository -->
17+
18+
<repositories>
19+
<repository>
20+
<id>jitpack.io</id>
21+
<url>https://jitpack.io</url>
22+
</repository>
23+
</repositories>
24+
25+
<dependencies>
26+
<dependency>
27+
<groupId>com.github.LevelZ-File</groupId>
28+
<artifactId>java-bindings</artifactId>
29+
<version>[VERSION]</version>
30+
</dependency>
31+
</dependencies>
32+
```
33+
34+
Gradle (Groovy)
35+
```groovy
36+
// Add JitPack Repository
37+
repositories {
38+
maven { url 'https://jitpack.io' }
39+
}
40+
41+
dependencies {
42+
implementation 'com.github.LevelZ-File:java-bindings:[VERSION]'
43+
}
44+
```
45+
46+
Gradle (Kotlin DSL)
47+
```kts
48+
// Add JitPack Repository
49+
repositories {
50+
maven("https://jitpack.io")
51+
}
52+
53+
dependencies {
54+
implementation("com.github.LevelZ-File:java-bindings:[VERSION]")
55+
}
56+
```
957
## Usage
1058

1159
```java

0 commit comments

Comments
 (0)