-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
# Px32 Bot | ||
- [JDA](https://github.com/discord-jda/JDA)로 만든 Kotlin 디스코드 봇 구동기 입니다. | ||
|
||
## How to Use | ||
봇 구동기는 [이곳](https://gitlab.wh64.net/devproje/px32-bot/-/releases)에서 다운로드 받으실 수 있습니다. | ||
|
||
## Developments | ||
API를 사용하여 플러그인 개발을 원하신다면 아래의 코드로 라이브러리를 추가 해 주세요. | ||
JDA의 버전은 [이곳](https://github.com/discord-jda/JDA/releases)에서 확인 하실 수 있습니다. | ||
|
||
- Maven | ||
```xml | ||
<repositories> | ||
<repository> | ||
<id>ProjectCentral</id> | ||
<url>https://repo.wh64.net/repository/maven-releases/</url> | ||
</repository> | ||
|
||
// If you want to snapshot version, please write this code. | ||
<repository> | ||
<id>ProjectCentral-SNAPSHOT</id> | ||
<url>https://repo.wh64.net/repository/maven-snapshots/</url> | ||
</repository> | ||
</repositories> | ||
``` | ||
|
||
```xml | ||
<dependencies> | ||
... | ||
<!-- JDA is required --> | ||
<dependency> | ||
<groupId>net.dv8tion</groupId> | ||
<artifactId>JDA</artifactId> | ||
<version>VERSION</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>net.projecttl</groupId> | ||
<artifactId>px32-bot-api</artifactId> | ||
<version>VERSION</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
</dependencies> | ||
``` | ||
|
||
- Gradle | ||
```kts | ||
repositories { | ||
mavenCentral() | ||
maven("https://repo.wh64.net/repository/maven-releases/") | ||
|
||
// If you want to snapshot version, please write this code. | ||
maven("https://repo.wh64.net/repository/maven-snapshots/") | ||
} | ||
``` | ||
|
||
```kts | ||
dependencies { | ||
... | ||
// JDA is required | ||
compileOnly("net.dv8tion:JDA:VERSION") | ||
compileOnly("net.projecttl:px32-bot-api:VERSION") | ||
} | ||
``` | ||
|
||
## License | ||
- 해당 프로젝트는 [MIT License](https://gitlab.wh64.net/devproje/px32-bot/-/blob/master/LICENSE)를 따릅니다. |