-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
34 lines (27 loc) · 924 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.0.4'
id 'io.spring.dependency-management' version '1.1.0'
id 'application'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework:spring-webflux:6.0.8'
implementation 'commons-fileupload:commons-fileupload:1.5'
implementation "club.minnced:discord-webhooks:0.8.2"
implementation "org.bspfsystems:yamlconfiguration:1.3.0"
implementation "com.squareup.okhttp3:okhttp:4.10.0"
//database
implementation 'org.postgresql:postgresql:42.6.0'
implementation 'com.zaxxer:HikariCP:5.0.1'
}
test {
useJUnitPlatform()
}