-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
176 lines (141 loc) · 4.56 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
plugins {
id 'java'
id 'org.springframework.boot' version '3.2.2'
id 'io.spring.dependency-management' version '1.1.4'
id 'jacoco'
}
jacoco {
toolVersion = '0.8.9'
}
group = 'com.ajou'
version = '0.0.1'
jar {
enabled = false
}
java {
sourceCompatibility = '17'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
// Spring Boot Actuator
implementation 'org.springframework.boot:spring-boot-starter-actuator'
// Spring AOP
implementation 'org.springframework.boot:spring-boot-starter-aop'
// Swagger
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.3.0'
// Spring Web
implementation 'org.springframework.boot:spring-boot-starter-web'
// Spring Security
implementation 'org.springframework.boot:spring-boot-starter-security'
testImplementation 'org.springframework.security:spring-security-test'
// Spring Data JPA
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
// Querydsl
implementation 'com.querydsl:querydsl-jpa:5.0.0:jakarta'
annotationProcessor 'com.querydsl:querydsl-apt:5.0.0:jakarta'
annotationProcessor 'jakarta.annotation:jakarta.annotation-api'
annotationProcessor 'jakarta.persistence:jakarta.persistence-api'
// Spring Validation
implementation 'org.springframework.boot:spring-boot-starter-validation'
// Spring Configuration Processor
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
// Spring Open Feign (Feign Client)
implementation 'org.springframework.cloud:spring-cloud-starter-openfeign:4.1.0'
// JWT
implementation 'io.jsonwebtoken:jjwt-api:0.11.5'
implementation 'io.jsonwebtoken:jjwt-impl:0.11.5'
implementation 'io.jsonwebtoken:jjwt-jackson:0.11.5'
// AWS S3
implementation 'com.amazonaws:aws-java-sdk-s3:1.12.658'
// Databases
runtimeOnly 'com.h2database:h2'
runtimeOnly 'com.mysql:mysql-connector-j'
// Redis
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
// Lombok
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testCompileOnly 'org.projectlombok:lombok'
testAnnotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation 'javax.xml.bind:jaxb-api:2.3.1'
}
tasks.named('test') {
useJUnitPlatform()
}
// Jacoco
test {
finalizedBy jacocoTestReport
}
jacocoTestReport {
dependsOn test
reports {
html.required.set(true)
// QueryDSL Q클래스 제외
def Qdomains = []
for (qPattern in "**/QA".."**/QZ") {
Qdomains.add(qPattern + "*")
}
afterEvaluate {
classDirectories.setFrom(files(classDirectories.files.collect {
fileTree(dir: it,
excludes: [] + Qdomains,
includes: [
'**/service/**',
'**/controller/**',
'**/common/entity/FullAddress*',
'**/repository/**'
])
}))
}
}
finalizedBy 'jacocoTestCoverageVerification'
}
// TODO: 개발 마감 기한에 맞추기 위해 Jacoco test coverage violation rule을 임시로 해제함. 추후 재설정 및 테스트코드 작성 필요
//jacocoTestCoverageVerification {
// violationRules {
// rule {
// enabled = true
// element = 'CLASS'
//
// limit {
// counter = 'BRANCH'
// value = 'COVEREDRATIO'
// minimum = 1.0
// }
//
// limit {
// counter = 'LINE'
// value = 'COVEREDRATIO'
// minimum = 1.0
// }
//
// includes = [
// '*service.*Service*',
// '*controller.*Controller*',
// '*common.entity.FullAddress*',
// '*repository.*Repository*'
// ]
//
// excludes = [
// '*service.NcpMessageService',
// '*repository.UserAuthCodeRedisRepository'
// ]
// }
// }
//}
// Querydsl
def querydslGeneratedLocation = 'build/generated'
tasks.withType(JavaCompile).configureEach {
options.getGeneratedSourceOutputDirectory().set(file(querydslGeneratedLocation))
}
clean {
delete file(querydslGeneratedLocation)
}