-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (32 loc) · 906 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
38
39
40
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '8.1.1'
}
group = 'de.bacherik'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8'
}
shadowJar {
archiveBaseName.set('DisKube')
archiveClassifier.set('')
archiveVersion.set('')
manifest {
attributes('Main-Class': 'de.bacherik.Main', "Multi-Release": true)
}
}
dependencies {
// https://mvnrepository.com/artifact/net.dv8tion/JDA
implementation("net.dv8tion:JDA:5.1.0")
implementation("ch.qos.logback:logback-classic:1.5.6")
// https://mvnrepository.com/artifact/io.kubernetes/client-java
implementation("io.kubernetes:client-java:21.0.0")
testImplementation platform('org.junit:junit-bom:5.10.3')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}