This repository was archived by the owner on Oct 2, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +41
-21
lines changed Expand file tree Collapse file tree 4 files changed +41
-21
lines changed Original file line number Diff line number Diff line change 1
1
# Getting started
2
2
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 >
5
7
6
- ## Requirements
8
+ ### Add Panda Repository
7
9
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 :
9
11
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 />
12
27
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 >
14
36
15
- Setup your project with one of the following artifacts:
37
+ ### Add LiteCommands Dependency
16
38
17
39
<tabs >
18
40
<tab title =" Gradle KTS " >
19
41
42
+ Add the following line to your ` build.gradle.kts ` file in the ` dependencies ` section:
43
+ <br /><br />
44
+
20
45
``` kotlin
21
46
implementation(" dev.rollczi:[[[ARTIFACT_ID|Platforms.md]]]:3.0.1" )
22
47
```
23
48
</tab >
24
49
25
50
<tab title =" Maven " >
26
51
52
+ Add the following lines to your ` pom.xml ` file in the ` dependencies ` section:
53
+ <br /><br />
54
+
27
55
``` xml
28
56
<dependency >
29
57
<groupId >dev.rollczi</groupId >
Original file line number Diff line number Diff line change 1
1
# Introduction
2
2
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 " />
6
4
7
5
LiteCommands is a versatile and feature-rich command framework
8
6
designed to simplify command handling for a wide range of platforms and implementations.
Original file line number Diff line number Diff line change @@ -11,13 +11,7 @@ LiteCommands supports multiple platforms and extensions for them. You can find a
11
11
| ` litecommands-jda ` | JDA | 5.0.0-beta.15 |
12
12
13
13
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 >
You can’t perform that action at this time.
0 commit comments