This repository was archived by the owner on Oct 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
57 lines (44 loc) · 1.48 KB
/
build.gradle
File metadata and controls
57 lines (44 loc) · 1.48 KB
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
51
52
53
54
55
56
57
plugins {
id 'com.github.johnrengelman.shadow' version '8.1.0'
id 'java'
}
group 'me.dmk.app'
version '1.0.3'
compileJava.options.encoding = "UTF-8"
compileTestJava.options.encoding = "UTF-8"
java {
sourceCompatibility = JavaVersion.VERSION_18
targetCompatibility = JavaVersion.VERSION_18
}
repositories {
mavenCentral()
maven {url 'https://m2.dv8tion.net/releases'}
maven {url "https://storehouse.okaeri.eu/repository/maven-public/"}
maven {url "https://oss.sonatype.org/content/repositories/snapshots/"}
maven {url 'https://jitpack.io'}
}
dependencies {
implementation 'org.javacord:javacord:3.9.0-SNAPSHOT'
implementation 'eu.okaeri:okaeri-configs-json-gson:5.0.0-beta.5'
implementation 'com.github.walkyst:lavaplayer-fork:1.4.1'
implementation 'com.github.jagrosh:JLyrics:master-SNAPSHOT'
implementation 'org.slf4j:slf4j-simple:2.0.7'
runtimeOnly 'org.apache.logging.log4j:log4j-core:2.17.1'
compileOnly 'org.projectlombok:lombok:1.18.26'
annotationProcessor 'org.projectlombok:lombok:1.18.26'
testCompileOnly 'org.projectlombok:lombok:1.18.26'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.26'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
}
jar {
manifest {
attributes(
'Main-Class': "me.dmk.app.Main",
'Multi-Release': 'true'
)
}
}
test {
useJUnitPlatform()
}