-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
103 lines (79 loc) · 2.81 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
plugins {
id 'java'
id 'org.springframework.boot' version '2.7.13'
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
}
group = 'dblab'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '11'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.springframework.boot:spring-boot-starter-test'
// spring data jpa 추가 시작
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
// spring data jpa 추가 끝
// validation 추가 시작
implementation 'org.springframework.boot:spring-boot-starter-validation'
// validation 추가 끝
// OAuth2 추가 시작
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
// OAuth2 추가 끝
// spring web 추가 시작
implementation 'org.springframework.boot:spring-boot-starter-web'
// spring web 끝
// 테스트 전용 DB H2 추가 시작
runtimeOnly 'com.h2database:h2'
// 테스트 전용 DB H2 추가 끝
// lombok 추가 시작
annotationProcessor 'org.projectlombok:lombok'
compileOnly 'org.projectlombok:lombok'
// lombok 추가 끝
// 시큐리티 추가 시작
implementation 'org.springframework.boot:spring-boot-starter-security'
testImplementation 'org.springframework.security:spring-security-test'
// 시큐리티 추가 끝
// JWT 추가
implementation group: 'io.jsonwebtoken', name: 'jjwt-api', version: '0.11.5'
runtimeOnly group: 'io.jsonwebtoken', name: 'jjwt-impl', version: '0.11.5'
runtimeOnly group: 'io.jsonwebtoken', name: 'jjwt-jackson', version: '0.11.5'
// JWT 추가 끝
// swagger 추가 시작
implementation 'io.springfox:springfox-boot-starter:3.0.0'
// swagger 추가 끝
// Querydsl 추가 시작
implementation 'com.querydsl:querydsl-jpa'
annotationProcessor "com.querydsl:querydsl-apt:${dependencyManagement.importedProperties['querydsl.version']}:jpa"
annotationProcessor "jakarta.persistence:jakarta.persistence-api"
annotationProcessor "jakarta.annotation:jakarta.annotation-api"
// Querydsl 추가 끝
// thymeleaf 추가 시작
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
// thymeleaf 추가 끝
// gson Parser 추가 시작
implementation 'com.google.code.gson:gson:2.9.0'
// gson Parser 추가 끝
// mail 추가 시작
implementation 'org.springframework.boot:spring-boot-starter-mail:2.7.1'
// mail 추가 끝
// mysql 추가 시작
runtimeOnly 'mysql:mysql-connector-java:8.0.32'
// mysql 추가 끝
// EqualsAndHash build Error solver 추가 시작
implementation 'com.google.code.findbugs:jsr305:3.0.2'
// EqualsAndHash build Error solver 추가 시작 끝
// S3 추가 시작
implementation 'org.springframework.cloud:spring-cloud-starter-aws:2.2.6.RELEASE'
// S3 추가 끝
}
tasks.named('test') {
useJUnitPlatform()
}