-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
53 lines (41 loc) · 1.49 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 'org.springframework.boot' version '2.6.4'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
id 'application'
}
group = 'com.FTHLBOT'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
application {
mainClass = "com.fthlbot.discordbotfthl.DiscordBotFthlApplication"
}
repositories {
mavenCentral()
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots'
}
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.6.10'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
runtimeOnly 'mysql:mysql-connector-java'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation 'org.javacord:javacord:3.8.0'
runtimeOnly 'org.apache.logging.log4j:log4j-core:2.19.0'
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"
implementation 'com.google.code.gson:gson:2.10'
implementation 'com.github.SaHHiiLL:clash-api:a6c7ba0e52'
implementation group: 'org.json', name: 'json', version: '20220320'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'
implementation 'org.springframework.boot:spring-boot-starter-quartz'
implementation 'org.imgscalr:imgscalr-lib:4.2'
implementation 'org.yaml:snakeyaml:1.33'
}
tasks.named('test') {
useJUnitPlatform()
}
configurations.all {
exclude module: 'slf4j-simple'
}