-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
56 lines (46 loc) · 1.65 KB
/
build.gradle.kts
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
plugins {
id("java")
id("org.sonarqube") version "4.4.1.3373"
}
group = "fr.enimaloc"
version = "1.0-SNAPSHOT"
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
}
repositories {
mavenCentral().content {
excludeModule("javax.media", "jai_core")
}
maven(url = "https://m2.enimaloc.fr/snapshots")
maven(url = "https://m2.enimaloc.fr/releases")
maven(url = "https://jitpack.io")
mavenLocal()
}
dependencies {
// Base dependencies
implementation("net.dv8tion:JDA:5.0.0-beta.23")
implementation("fr.enimaloc:jda-enutils:0.4.1")
implementation("org.slf4j:slf4j-simple:2.0.13")
implementation("commons-io:commons-io:2.15.1")
implementation("fr.enimaloc.night-config:toml:3.7.0")
implementation("org.xerial:sqlite-jdbc:3.45.1.0")
implementation("fr.enimaloc:matcher:0.1.5")
implementation("com.fasterxml.jackson.core:jackson-core:2.17.1")
implementation("com.fasterxml.jackson.core:jackson-databind:2.17.1")
implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.17.1")
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.16.1")
implementation("club.minnced:discord-webhooks:0.8.4")
implementation("com.github.imcdonagh:image4j:0.7.2")
implementation("com.theokanning.openai-gpt3-java:service:0.18.2")
implementation("org.apache.commons:commons-text:1.11.0")
testImplementation(platform("org.junit:junit-bom:5.10.2"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
tasks.test {
useJUnitPlatform()
}
sonar {
properties {
property("sonar.projectKey", "enimaloc_esportlinebot_AY1iZ023Y2D0l8qiaVBd")
}
}