blob: ab3cd38c6112371e92c706099c05fea5f1e270cf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
plugins {
application
id("com.gradleup.shadow") version "9.4.1"
}
application.mainClass = "club.eviltransgenders.bookmark.BookmarksBot"
group = "club.eviltransgenders"
version = "0.1.0"
repositories {
mavenCentral()
}
dependencies {
implementation("ch.qos.logback:logback-classic:1.5.32")
implementation("net.dv8tion:JDA:6.4.1")
}
|