-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
49 lines (37 loc) · 1.24 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
plugins {
id 'com.github.johnrengelman.shadow' version '8.1.1'
id 'org.jetbrains.kotlin.jvm' version '1.9.22'
id 'java'
}
jar {
manifest.attributes(
'Main-Class': 'com.sidpatchy.clairebot.Main',
'Multi-Release': 'true'
)
}
group 'com.sidpatchy'
version '3.3.3'
sourceCompatibility = 17
targetCompatibility = 17
repositories {
mavenCentral()
maven { url 'https://m2.dv8tion.net/releases' }
maven { url 'https://jitpack.io' }
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.1'
implementation 'com.github.Sidpatchy:Robin:2.0.0'
implementation 'org.javacord:javacord:3.8.0'
implementation 'org.apache.logging.log4j:log4j-api:2.22.1'
implementation 'org.apache.logging.log4j:log4j-core:2.22.1'
implementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.22.1'
implementation 'org.apache.commons:commons-lang3:3.14.0'
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.9.22'
implementation 'org.yaml:snakeyaml:2.0'
implementation 'org.json:json:20231013'
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.16.1'
}
test {
useJUnitPlatform()
}