-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
32 lines (27 loc) · 817 Bytes
/
Copy pathbuild.gradle
File metadata and controls
32 lines (27 loc) · 817 Bytes
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
plugins {
id 'java'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
name 'm2-dv8tion'
url 'https://m2.dv8tion.net/releases'}
maven { url "https://m2.chew.pro/releases" }
maven { url 'https://jitpack.io'}
}
dependencies {
implementation "net.dv8tion:JDA:4.4.0_350"
implementation 'com.github.walkyst:lavaplayer-fork:1.3.97'
implementation 'com.google.api-client:google-api-client-jackson2:1.20.0'
implementation 'redis.clients:jedis:3.7.0'
implementation 'com.iheartradio.m3u8:open-m3u8:0.2.4'
implementation 'pw.chew:jda-chewtils:1.23.0'
implementation 'commons-io:commons-io:2.11.0'
implementation "de.sfuhrm:radiobrowser4j:2.2.1"
}
task stage(dependsOn: ['build', 'clean'])
test {
useJUnitPlatform()
}