Kotlin Discord Bot deployer for JDA
Find a file
2024-10-07 14:23:21 +09:00
gradle/wrapper feat: first commit 2024-09-01 23:25:09 +09:00
px32-bot-api feat: add application command dsl builder and migrate commands 2024-10-07 13:35:06 +09:00
px32-bot-core feat: add application command dsl builder and migrate commands 2024-10-07 13:35:06 +09:00
px32-bot-module feat: add application command dsl builder and migrate commands 2024-10-07 13:35:06 +09:00
sample-plugin feat: middle save 2024-09-23 16:45:34 +09:00
.env.example docker: support docker compose 2024-09-02 17:50:54 +09:00
.gitignore feat: plugin command 2024-09-21 23:13:23 +09:00
build.gradle.kts fix: handler bug fixed 2024-10-01 21:44:54 +09:00
gradle.properties feat: change version name 2024-10-07 13:39:08 +09:00
gradlew feat: first commit 2024-09-01 23:25:09 +09:00
gradlew.bat feat: first commit 2024-09-01 23:25:09 +09:00
LICENSE Add LICENSE 2024-10-07 05:21:50 +00:00
README.md feat: README 2024-10-07 14:23:21 +09:00
settings.gradle.kts fix: plugin logger name fixed 2024-09-22 01:57:20 +09:00

Px32 Bot

  • JDA로 만든 Kotlin 디스코드 봇 구동기 입니다.

How to Use

봇 구동기는 이곳에서 다운로드 받으실 수 있습니다.

Developments

API를 사용하여 플러그인 개발을 원하신다면 아래의 코드로 라이브러리를 추가 해 주세요. JDA의 버전은 이곳에서 확인 하실 수 있습니다.

  • Maven
<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>
<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
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/")
}
dependencies {
    ...
    // JDA is required
    compileOnly("net.dv8tion:JDA:VERSION")
    compileOnly("net.projecttl:px32-bot-api:VERSION")
}

License