-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
35 lines (29 loc) · 830 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 'com.github.johnrengelman.shadow' version '8.1.1'
}
group 'tech.jonasfranke'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'java'
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.3'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.3'
implementation 'com.discord4j:discord4j-core:3.2.6'
implementation 'com.github.docker-java:docker-java:3.4.0'
implementation group: 'org.slf4j', name: 'slf4j-api', version: '2.0.16'
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.5.12'
}
test {
useJUnitPlatform()
}
jar {
manifest {
attributes(
"Main-Class": "tech.jonasfranke.ddsb.main.Main"
)
}
}