-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
35 lines (31 loc) · 970 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
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '5.2.0'
id "io.spring.dependency-management" version "1.0.11.RELEASE"
}
mainClassName = "io.github.Smaltin.AvilonSubBot.Runner"
sourceCompatibility = 17
group 'io.github.smaltin.avilonsubbot'
repositories {
mavenCentral()
maven {
name 'm2-dv8tion'
url 'https://m2.dv8tion.net/releases'
}
maven { url "https://maven.scijava.org/content/groups/public/" }
maven { url 'https://jitpack.io' }
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
implementation("net.dv8tion:JDA:4.4.0_350") {
exclude module: 'opus-java'
}
implementation 'com.google.code.gson:gson:2.9.0'
implementation 'com.sedmelluq:lavaplayer:1.3.78'
implementation 'com.github.Kodehawa:imageboard-api:2.5.2'
}
test {
useJUnitPlatform()
}