File tree Expand file tree Collapse file tree 1 file changed +48
-0
lines changed Expand file tree Collapse file tree 1 file changed +48
-0
lines changed Original file line number Diff line number Diff line change 2
2
3
3
> Java & Kotlin Parser & API For LevelZ File Format
4
4
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
+
5
8
## Overview
6
9
7
10
Provides Java & Kotlin Parsing/Support for the LevelZ File Format.
8
11
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
+ ```
9
57
## Usage
10
58
11
59
``` java
You can’t perform that action at this time.
0 commit comments