-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
161 lines (138 loc) · 4.35 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
plugins {
id 'org.springframework.boot' version '2.5.2'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
id "com.ewerk.gradle.plugins.querydsl" version "1.0.10" //querydsl
// *** Q-Type error *** //
id "io.franzbecker.gradle-lombok" version "3.0.0"
id 'jacoco' // jacoco
}
group = 'com.server'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
// *** spring starter *** //
implementation 'org.springframework.boot:spring-boot-starter-data-jpa' // data jpa
implementation 'org.springframework.boot:spring-boot-starter-security' // security
implementation 'org.springframework.boot:spring-boot-starter-validation' // validation
implementation 'org.springframework.boot:spring-boot-starter-web' // starter web
// *** h2, MariaDB *** //
runtimeOnly 'com.h2database:h2'
runtimeOnly 'org.mariadb.jdbc:mariadb-java-client'
compile group: 'org.mariadb.jdbc', name: 'mariadb-java-client'
// *** lombok *** //
implementation 'org.projectlombok:lombok'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testAnnotationProcessor 'org.projectlombok:lombok'
testCompileOnly 'org.projectlombok:lombok'
// *** test *** //
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
// *** swagger *** //
implementation 'io.springfox:springfox-swagger2:2.9.2'
implementation 'io.springfox:springfox-swagger-ui:2.9.2'
// *** 다국어 처리를 위한 yaml-resource-bundle *** //
implementation 'net.rakugakibox.util:yaml-resource-bundle:1.2'
// *** ModelMapper *** //
implementation group: 'org.modelmapper', name: 'modelmapper', version: '2.3.8'
// *** JsonWebToken *** //
implementation 'io.jsonwebtoken:jjwt-api:0.11.1'
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.1'
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.1'
// *** QueryDsl *** //
implementation 'com.querydsl:querydsl-jpa'
// *** XSS 처리를 위한 dependency *** //
implementation 'org.apache.commons:commons-lang3'
implementation 'org.apache.commons:commons-text:1.9'
// *** AWS SES *** ///
implementation group: 'com.amazonaws', name: 'aws-java-sdk-ses', version: '1.11.227'
// *** AWS CloudWatch Log *** //
implementation 'ca.pjer:logback-awslogs-appender:1.6.0'
// *** Spring Cloud *** //
implementation("org.springframework.cloud:spring-cloud-starter-aws:2.2.6.RELEASE")
}
test {
jacoco {
enabled = true
destinationFile = file("$buildDir/jacoco/${name}.exec")
includes = []
excludes = []
excludeClassLoaders = []
includeNoLocationClasses = false
sessionId = "<auto-generated value>"
dumpOnExit = true
classDumpDir = null
output = JacocoTaskExtension.Output.FILE
address = "localhost"
port = 6300
jmx = false
}
useJUnitPlatform()
finalizedBy 'jacocoTestReport'
}
//querydsl 추가 시작
def querydslDir = "$buildDir/generated/querydsl"
querydsl {
jpa = true
querydslSourcesDir = querydslDir
}
sourceSets {
main.java.srcDir querydslDir
}
configurations {
querydsl.extendsFrom compileClasspath
}
compileQuerydsl {
options.annotationProcessorPath = configurations.querydsl
}
//querydsl 추가 끝
// jacoco
jacoco {
toolVersion = '0.8.5'
}
jacocoTestReport {
reports {
html.enabled true // "/build/reports/jacoco/test/html/index.html"
csv.enabled false
xml.enabled false
}
afterEvaluate {
classDirectories.from = files(classDirectories.files.collect {
fileTree(dir: it, exclude: [
'**/exception/**' // 테스트 커버리지 측정 대상에서 제거
,'**/dto/**' // 테스트 커버리지 측정 대상에서 제거
,'**/controller/**' // 권한별 컨트롤러 구조 변경 후 컨트롤러 테스트 코드 작성 예정
,'**/repository/**'
,'**/config/**'
,'**/health_check/**'
,'**/Dotori/DotoriApplication*'
,'**/Dotori/**/Q*' // Qclass 테스트 커버리지 측정 대상에서 제거
])
})
}
finalizedBy 'jacocoTestCoverageVerification'
}
jacocoTestCoverageVerification {
violationRules {
rule {
// 룰을 on 여부
enabled = true
// 룰을 check 단위 (패키지 번들)
element = 'BUNDLE'
limit {
counter = 'INSTRUCTION' // Java 바이트코드 명령 수
value = 'COVEREDRATIO' // 커버된 비율
minimum = 0.50 // 50%
}
}
}
}