-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
42 lines (35 loc) · 1006 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
37
38
39
40
41
42
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '6.1.0'
}
repositories {
jcenter()
mavenCentral()
maven {
url 'https://jitpack.io'
}
maven {
url 'https://m2.dv8tion.net/releases'
}
}
jar {
manifest {
attributes(
'Main-Class': 'com.tzesh.tzebot.Main'
)
}
}
dependencies {
implementation 'ch.qos.logback:logback-classic:1.4.11'
implementation 'io.github.cdimascio:dotenv-java:2.3.1'
implementation 'com.google.apis:google-api-services-youtube:v3-rev20230123-2.0.0'
implementation 'com.google.code.gson:gson:2.10.1'
implementation 'org.json:json:20230227'
implementation 'com.sedmelluq:lavaplayer:1.3.77'
implementation 'net.dv8tion:JDA:5.0.0-beta.15'
implementation 'org.mongodb:mongodb-driver-sync:4.11.0'
}
compileJava.options.encoding = 'UTF-8'
mainClassName = 'com.tzesh.tzebot.Main'
version '5.00'