-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
176 lines (140 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 '2.7.8'
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
id 'jacoco'
}
jacoco {
toolVersion = '0.8.8'
}
jacocoTestReport {
reports {
xml.enabled false
csv.enabled false
html.enabled true
}
// ์ถํ QueryDSL ์ถ๊ฐ ์ Qdomain์ ๋ํ exclude ์ค์
def Qdomains = []
for (qPattern in '**/QA'..'**/QZ') {
Qdomains.add(qPattern + '*')
}
afterEvaluate {
classDirectories.setFrom(files(classDirectories.files.collect {
fileTree(dir: it,
excludes: [
'**/*Auth*.*',
'**/*PlaceController*.*',
'**/*PlaceService*.*',
'**/*Http*.*',
'**/*Terms*.*'
] + Qdomains,
includes: [
'**/service/**',
'**/controller/**'
])
}))
}
finalizedBy 'jacocoTestCoverageVerification'
}
jacocoTestCoverageVerification {
// ์ถํ QueryDSL ์ถ๊ฐ ์ Qdomain์ ๋ํ exclude ์ค์
def Qdomains = []
for (qPattern in '*.QA'..'*.QZ') { // qPattern = '*.QA', '*.QB', ... '*.QZ'
Qdomains.add(qPattern + '*')
}
violationRules {
rule {
enabled = true
element = 'CLASS'
limit {
counter = 'BRANCH'
value = 'COVEREDRATIO'
minimum = 0.70
}
limit {
counter = 'LINE'
value = 'COVEREDRATIO'
minimum = 0.70
}
excludes = [
'*.*Auth*',
'*.*PlaceController*',
'*.*PlaceService*',
'*.*Http*',
'*.*Scrap*',
'*.*Terms*'
] + Qdomains
includes = [
'*.*Service*',
'*.*Controller'
]
}
}
}
group = 'com.dnd'
version = '0.0.1-SNAPSHOT'
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'
// Spring Web
implementation 'org.springframework.boot:spring-boot-starter-web'
// thymeleaf
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
// Swagger
implementation 'org.springdoc:springdoc-openapi-ui:1.6.12'
// 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'
// Database - H2, MySQL
runtimeOnly 'com.h2database:h2'
runtimeOnly 'com.mysql:mysql-connector-j'
// Spring Validation
implementation 'org.springframework.boot:spring-boot-starter-validation'
// Redis
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
// Embedded-Redis (for test)
implementation group: 'it.ozimov', name: 'embedded-redis', version: '0.7.1'
// 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'
// HttpClient
implementation 'org.apache.httpcomponents:httpclient:4.5.14'
// JSoup
implementation 'org.jsoup:jsoup:1.15.4'
// qlrm (JpaResultMapper)
implementation group: 'ch.simas.qlrm', name: 'qlrm', version: '1.7.1'
// Spring Boot Test
testImplementation 'org.springframework.boot:spring-boot-starter-test'
// Lombok
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testCompileOnly 'org.projectlombok:lombok'
testAnnotationProcessor 'org.projectlombok:lombok'
}
task testCoverage(type: Test) {
group 'verification'
description 'Runs the unit tests with coverage'
dependsOn(':test',
':jacocoTestReport',
':jacocoTestCoverageVerification')
tasks['jacocoTestReport'].mustRunAfter(tasks['test'])
tasks['jacocoTestCoverageVerification'].mustRunAfter(tasks['jacocoTestReport'])
}
tasks.named('test') {
useJUnitPlatform()
finalizedBy 'jacocoTestReport'
}