-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
51 lines (44 loc) · 1.62 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
plugins {
id 'java'
id 'org.springframework.boot' version '2.7.8'
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
}
group = 'study'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:2.3.0'
//패스워드 암호화를 위해 jbcrypt 사용
implementation group: 'org.mindrot', name: 'jbcrypt', version: '0.4'
//email 인증코드 서비스를 위해 추가
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-mail', version: '2.7.1'
//mariadb 사용을 위해 추가
implementation group: 'org.mariadb.jdbc', name: 'mariadb-java-client', version: '2.4.1'
//using redis
//implementation 'org.springframework.boot:spring-boot-starter-data-redis'
implementation 'org.redisson:redisson-spring-boot-starter:3.18.0'
//using aop
implementation 'org.springframework.boot:spring-boot-starter-aop'
// S3
implementation 'org.springframework.cloud:spring-cloud-starter-aws:2.2.1.RELEASE'
implementation 'org.json:json:20200518'
implementation 'org.projectlombok:lombok:1.18.22'
//유효성 검사를 위해 추가
implementation 'org.springframework.boot:spring-boot-starter-validation'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.mockito:mockito-inline:3.6.0'
}
tasks.named('test') {
useJUnitPlatform()
}