Skip to content

Commit 5f6b79e

Browse files
committed
chore(readme): add import section
1 parent 01c0dbb commit 5f6b79e

File tree

3 files changed

+26
-9
lines changed

3 files changed

+26
-9
lines changed

.idea/modules.xml

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules/core/command.command-core.test.iml

Lines changed: 0 additions & 8 deletions
This file was deleted.

README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,32 @@
22

33
A pure, functional, typesafe command line parser.
44

5+
# Import
6+
7+
## Gradle
8+
9+
```groovy
10+
repositories {
11+
mavenCentral()
12+
}
13+
14+
dependencies {
15+
implementation 'io.typecraft:command-bukkit:0.7.0'
16+
}
17+
```
18+
19+
## Maven
20+
21+
```xml
22+
<dependency>
23+
<groupId>io.typecraft</groupId>
24+
<artifactId>command-bukkit</artifactId>
25+
<version>0.7.0</version>
26+
</dependency>
27+
```
28+
29+
# Usage
30+
531
```java
632
// core/src/test/../CommandTest.java
733
// MyCommand = AddItem | RemoveItem | OpenItemList | ReloadCommand

0 commit comments

Comments
 (0)