Add Example Javacord Implementation
This commit is contained in:
parent
2fbd90dfee
commit
484dc0435f
12 changed files with 599 additions and 0 deletions
29
examples/example-javacord/build.gradle
Normal file
29
examples/example-javacord/build.gradle
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
apply plugin: "application"
|
||||
apply plugin: "com.github.johnrengelman.shadow"
|
||||
|
||||
application {
|
||||
mainClassName = "cloud.commandframework.examples.javacord.ExampleBot"
|
||||
}
|
||||
|
||||
build.dependsOn(shadowJar)
|
||||
|
||||
repositories {
|
||||
maven {
|
||||
url = "https://repo.simplix.dev/repository/simplixsoft-public/"
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
/* Cloud */
|
||||
implementation project(":cloud-javacord")
|
||||
/* Utilities */
|
||||
implementation "dev.simplix.core:simplixcore-common-api:1.0.0-SNAPSHOT"
|
||||
implementation "dev.simplix.core:simplixcore-common-implementation:1.0.0-SNAPSHOT"
|
||||
/* Javacord */
|
||||
implementation "org.javacord:javacord:3.1.1"
|
||||
/* Logger */
|
||||
implementation "org.slf4j:slf4j-api:2.0.0-alpha1"
|
||||
runtimeOnly "ch.qos.logback:logback-classic:1.3.0-alpha5"
|
||||
runtimeOnly 'org.apache.logging.log4j:log4j-to-slf4j:2.11.0'
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue