-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
33 lines (28 loc) · 948 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
33
plugins {
id 'java'
id 'application'
}
project.version = '1.4.0'
project.group = 'org.eoanb'
project.archivesBaseName = 'edbotJ'
project.description = 'Discord bot developed for the EoaNB project.'
sourceCompatibility = JavaVersion.VERSION_11
mainClassName = 'core.Main'
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
repositories {
mavenCentral()
maven {
url = 'https://m2.dv8tion.net/releases'
}
}
dependencies {
implementation 'org.apache.commons:commons-text:1.9'
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'commons-io:commons-io:2.11.0'
implementation 'com.google.code.gson:gson:2.9.0'
implementation 'net.dv8tion:JDA:4.3.0_277'
implementation 'org.slf4j:slf4j-api:1.7.36'
implementation 'ch.qos.logback:logback-core:1.2.11'
implementation 'ch.qos.logback:logback-classic:1.2.11'
implementation 'org.postgresql:postgresql:42.4.0'
}