-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
37 lines (27 loc) · 961 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
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '8.1.1'
}
group = 'br.dev.erickfthz.finn'
version = '0.0.1'
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
compileJava.options.encoding = 'UTF-8'
repositories {
maven{
url 'https://jitpack.io'
}
mavenCentral()
}
dependencies {
implementation 'net.dv8tion:JDA:5.0.0-beta.13'
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
implementation 'com.github.walkyst:lavaplayer-fork:1.4.3'
implementation 'io.lindstrom:m3u8-parser:0.24'
implementation 'com.github.Chew.JDA-Chewtils:jda-chewtils:a86d4dedfa'
implementation 'ch.qos.logback:logback-classic:1.4.7'
implementation 'org.reflections:reflections:0.10.2'
compileOnly "org.projectlombok:lombok:1.18.26"
annotationProcessor "org.projectlombok:lombok:1.18.26"
}