-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
54 lines (39 loc) · 1.05 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
51
52
53
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '7.1.1'
id 'application'
}
group 'com.acmcsuf'
version '1.0-SNAPSHOT'
mainClassName = 'com.acmcsuf.triggers.Bot'
shadowJar {
archiveBaseName = 'triggers'
archiveVersion = ''
archiveClassifier = ''
destinationDirectory.set(file("."))
}
tasks.withType(AbstractArchiveTask) {
preserveFileTimestamps = false
reproducibleFileOrder = true
}
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
implementation 'io.github.cdimascio:dotenv-java:2.3.2'
implementation 'org.slf4j:slf4j-api:2.0.4'
implementation 'org.slf4j:slf4j-simple:2.0.4'
implementation('net.dv8tion:JDA:5.0.0-beta.1') {
exclude module: 'opus-java'
}
implementation 'me.xdrop:fuzzywuzzy:1.4.0'
implementation 'org.postgresql:postgresql:42.5.1'
}
test {
useJUnitPlatform()
}
dependencyLocking {
lockAllConfigurations()
}