oblak/examples/example-jda/build.gradle
dependabot[bot] 0db6a68750 ⬆️ Bump JDA from 4.2.0_211 to 4.2.0_212
Bumps JDA from 4.2.0_211 to 4.2.0_212.

Signed-off-by: dependabot[bot] <support@github.com>
2020-10-28 09:45:42 +01:00

18 lines
379 B
Groovy

apply plugin: "application"
apply plugin: "com.github.johnrengelman.shadow"
application {
mainClassName = "cloud.commandframework.examples.jda.ExampleBot"
}
repositories {
jcenter()
}
dependencies {
implementation project(":cloud-jda")
implementation 'net.dv8tion:JDA:4.2.0_212'
implementation 'org.slf4j:slf4j-simple:1.7.30'
}
build.dependsOn(shadowJar)