-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
71 lines (56 loc) · 2.18 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
plugins {
id 'java'
id 'org.springframework.boot' version '2.7.11'
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
}
group = 'org.devjeans'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '11'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
// 인증, 인가 관련 의존성은 추후 주석 해제하여 살릴 예정이니, 삭제하지 말아주세요!
// implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-websocket'
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'org.mariadb.jdbc:mariadb-java-client'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
// STOMP
implementation 'org.webjars:stomp-websocket:2.3.4'
// SockJS
implementation 'org.webjars:sockjs-client:1.5.1'
// 메일 의존성 추가
//Mail
implementation 'org.springframework.boot:spring-boot-starter-mail'
//thymeleaf(for email service)
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect'
// validation
implementation 'org.springframework.boot:spring-boot-starter-validation'
// jwt토큰 관련 라이브러리 추가
implementation 'io.jsonwebtoken:jjwt:0.9.1'
// S3에 사진 저장
implementation 'org.springframework.cloud:spring-cloud-starter-aws:2.2.6.RELEASE'
// 스케쥴러 분산락
implementation 'net.javacrumbs.shedlock:shedlock-spring:4.44.0'
implementation 'net.javacrumbs.shedlock:shedlock-provider-redis-spring:4.44.0'
}
tasks.named('test') {
// useJUnitPlatform()
}