-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
44 lines (38 loc) · 1.08 KB
/
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
37
38
39
40
41
42
43
44
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '7.1.2'
}
group 'network.amnesia'
version '0.1.0'
mainClassName = "network.amnesia.anbd.Main"
repositories {
mavenCentral()
maven {
url 'https://jitpack.io'
}
}
dependencies {
implementation 'net.dv8tion:JDA:5.0.0-beta.20'
implementation 'io.github.cdimascio:dotenv-java:2.3.1'
implementation 'org.apache.logging.log4j:log4j-api:2.22.1'
implementation 'org.apache.logging.log4j:log4j-core:2.22.1'
implementation 'org.apache.logging.log4j:log4j-slf4j2-impl:2.22.1'
implementation 'org.reflections:reflections:0.10.2'
implementation 'com.google.guava:guava:31.1-jre'
implementation 'com.github.walkyst:lavaplayer-fork:1.4.3'
implementation 'net.sourceforge.htmlcleaner:htmlcleaner:2.26'
implementation 'io.jsondb:jsondb-core:1.0.106'
implementation 'org.jsoup:jsoup:1.16.1'
}
test {
}
compileJava {
options.encoding = 'UTF-8'
options.compilerArgs << '-parameters'
}
jar {
manifest {
attributes 'Multi-Release': 'true'
}
}