Skip to content
This repository was archived by the owner on Oct 2, 2024. It is now read-only.

Commit b84f527

Browse files
committed
WiP
1 parent a1c41eb commit b84f527

File tree

4 files changed

+41
-21
lines changed

4 files changed

+41
-21
lines changed

Writerside/images/litecommands.png

61.6 KB
Loading

Writerside/topics/Getting-started.md

Lines changed: 36 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,57 @@
11
# Getting started
22

3-
This page will guide you through the process of setting up LiteCommands in your project.
4-
After reading this page, you will be able to use LiteCommands in your project.
3+
This page will guide you through the process of adding LiteCommands to your project.
4+
<tip>
5+
LiteCommands requires Java 8 or higher.
6+
</tip>
57

6-
## Requirements
8+
### Add Panda Repository
79

8-
Please make sure that you have the following requirements before you start:
10+
Depending on the build system you are using, add the following repository to your project:
911

10-
- Java 8 or higher
11-
- Dependency manager as [Gradle](https://gradle.org/) or [Maven](https://maven.apache.org/)
12+
<tabs>
13+
<tab title="Gradle KTS">
14+
15+
Add the following line to your `build.gradle.kts` file in the `repositories` section:
16+
<br/><br/>
17+
18+
```kotlin
19+
maven("https://repo.panda-lang.org/releases")
20+
```
21+
</tab>
22+
23+
<tab title="Maven">
24+
25+
Add the following lines to your `pom.xml` file in the `repositories` section:
26+
<br/><br/>
1227

13-
## Installation
28+
```xml
29+
<repository>
30+
<id>panda-repo</id>
31+
<url>https://repo.panda-lang.org/releases</url>
32+
</repository>
33+
```
34+
</tab>
35+
</tabs>
1436

15-
Setup your project with one of the following artifacts:
37+
### Add LiteCommands Dependency
1638

1739
<tabs>
1840
<tab title="Gradle KTS">
1941

42+
Add the following line to your `build.gradle.kts` file in the `dependencies` section:
43+
<br/><br/>
44+
2045
```kotlin
2146
implementation("dev.rollczi:[[[ARTIFACT_ID|Platforms.md]]]:3.0.1")
2247
```
2348
</tab>
2449

2550
<tab title="Maven">
2651

52+
Add the following lines to your `pom.xml` file in the `dependencies` section:
53+
<br/><br/>
54+
2755
```xml
2856
<dependency>
2957
<groupId>dev.rollczi</groupId>

Writerside/topics/Introdution.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# Introduction
22

3-
Welcome to the LiteCommands documentation! Here you will find everything you need to know about LiteCommands.
4-
5-
## Why use LiteCommands?
3+
<img alt="litecommands.png" src="litecommands.png" width="480"/>
64

75
LiteCommands is a versatile and feature-rich command framework
86
designed to simplify command handling for a wide range of platforms and implementations.

Writerside/topics/Platforms.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,7 @@ LiteCommands supports multiple platforms and extensions for them. You can find a
1111
| `litecommands-jda` | JDA | 5.0.0-beta.15 |
1212

1313

14-
More information about each platform can be found on the following pages:
15-
- [Bukkit](https://dev.bukkit.org/)
16-
- [Spigot](https://www.spigotmc.org/wiki/spigot-maven/)
17-
- [Paper](https://docs.papermc.io/paper/devi)
18-
- [Purpur](https://purpurmc.org/)
19-
- [BungeeCord](https://www.spigotmc.org/wiki/bungeecord-maven/)
20-
- [Waterfall](https://docs.papermc.io/waterfall/getting-started)
21-
- [Velocity](https://docs.papermc.io/velocity/dev/)
22-
- [Minestom](https://github.com/Minestom/Minestom)
23-
- [JDA](https://github.com/discord-jda/JDA)
14+
15+
<tabs>
16+
17+
</tabs>

0 commit comments

Comments
 (0)