-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
31 lines (27 loc) · 1.1 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.0.6'
id 'io.spring.dependency-management' version '1.1.0'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-security:3.0.4'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf:3.0.4'
implementation 'org.springframework.boot:spring-boot-starter-validation:3.0.4'
implementation 'org.springframework.boot:spring-boot-starter-web:3.0.4'
implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity6:3.1.1.RELEASE'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:3.0.4'
implementation 'javax.validation:validation-api:2.0.1.Final'
implementation 'org.passay:passay:1.6.2'
runtimeOnly 'com.mysql:mysql-connector-j:8.0.32'
testImplementation 'org.springframework.boot:spring-boot-starter-test:3.0.4'
testImplementation 'org.springframework.security:spring-security-test:6.0.2'
}
tasks.named('test') {
useJUnitPlatform()
}