forked from godGotMorning/godMorning_backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
52 lines (46 loc) · 1.98 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
plugins {
id 'org.springframework.boot' version '2.6.6'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group 'com.godMorning_backend'
version '1.0-SNAPSHOT'
sourceCompatibility = '11'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation('org.apache.httpcomponents:httpclient:4.5.13')
implementation('org.springframework.boot:spring-boot-devtools')
//lombok
implementation('org.projectlombok:lombok')
implementation 'org.projectlombok:lombok:1.18.20'
annotationProcessor('org.projectlombok:lombok')
testImplementation('org.projectlombok:lombok')
testAnnotationProcessor('org.projectlombok:lombok')
implementation('org.springframework.boot:spring-boot-devtools')
implementation('org.apache.httpcomponents:httpclient:4.5.13')
implementation 'org.projectlombok:lombok:1.18.20'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'io.projectreactor:reactor-test'
//DB
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
implementation 'mysql:mysql-connector-java:8.0.21'
//spring security
implementation('org.springframework.boot:spring-boot-starter-oauth2-client')
implementation('org.springframework.session:spring-session-jdbc')
implementation('org.springframework.boot:spring-boot-starter-data-jpa')
implementation('org.springframework.boot:spring-boot-starter-security')
//jwt
implementation('com.auth0:java-jwt:3.4.1')
// 배포를 위한 의존성 추가
implementation 'org.springframework.boot:spring-boot-starter-tomcat'
//비밀번호 찾기 위한 의존성 추가
implementation('org.springframework.boot:spring-boot-starter-mail')
}
tasks.named('test') {
useJUnitPlatform()
}