-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
32 lines (26 loc) · 878 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
plugins {
id 'java'
}
group 'com.kseirru'
version '1.0-SNAPSHOT'
compileJava.options.encoding = 'UTF-8'
compileTestJava.options.encoding = 'UTF-8'
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
maven {
name 'm2-dv8tion'
url 'https://m2.dv8tion.net/releases'
}
}
dependencies {
implementation("net.dv8tion:JDA:5.0.0-beta.6")
implementation("com.github.Chew:JDA-Chewtils:5e1a9f9")
implementation('ch.qos.logback:logback-classic:1.4.6')
implementation("com.squareup.okhttp3:okhttp:4.10.0")
implementation("io.github.cdimascio:dotenv-java:2.3.2")
implementation 'com.fasterxml.jackson.core:jackson-core:2.14.2'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.14.2'
implementation 'org.xerial:sqlite-jdbc:3.40.1.0'
implementation 'commons-validator:commons-validator:1.7'
}