-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
36 lines (28 loc) · 909 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
34
35
36
plugins {
id 'java'
id "com.github.ben-manes.versions" version "0.33.0"
id 'application'
}
group 'com.ktar'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
jcenter()
}
application {
mainClass = 'com.ktar.dragonbot.Main'
}
dependencies {
implementation('net.dv8tion:JDA:4.2.0_228') {
exclude module: 'opus-java'
}
// implementation 'com.coreoz:wisp:2.2.0'
implementation group: 'org.xerial', name: 'sqlite-jdbc', version: '3.32.3.2'
implementation 'org.tinylog:tinylog-impl:2.1.2'
implementation 'org.tinylog:slf4j-tinylog:2.1.2'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.11'
implementation group: 'io.github.classgraph', name: 'classgraph', version: '4.8.52'
compileOnly 'org.projectlombok:lombok:1.18.12'
annotationProcessor 'org.projectlombok:lombok:1.18.12'
}