-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
50 lines (40 loc) · 1.13 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
45
46
47
48
49
50
plugins {
id 'java'
id "com.github.johnrengelman.shadow" version "8.1.1"
}
group 'xyz.n7mn.dev'
version '2.0'
repositories {
mavenCentral()
maven {
name 'm2-dv8tion'
url 'https://m2.dv8tion.net/releases'
}
maven {
name 'jitpack'
url 'https://jitpack.io'
}
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
implementation ('net.dv8tion:JDA:5.0.0-beta.9') {
exclude module: 'opus-java'
}
implementation 'com.sedmelluq:lavaplayer:1.3.78'
implementation 'com.amihaiemil.web:eo-yaml:7.0.8'
implementation 'com.mysql:mysql-connector-j:8.0.33'
implementation 'com.google.code.gson:gson:2.10.1'
implementation "com.squareup.okhttp3:okhttp:4.11.0"
implementation 'redis.clients:jedis:5.0.0-beta1'
implementation 'com.github.nanami-network:NicoVideoPlayerLib:1.0'
implementation 'com.github.7mi-site:nico-proxy:0.3'
}
test {
useJUnitPlatform()
}
shadowJar {
manifest {
attributes 'Main-Class': 'xyz.n7mn.dev.NanamiMain'
}
}