-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
168 lines (135 loc) · 4.06 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.3.0'
id 'io.spring.dependency-management' version '1.1.5'
id 'jacoco'
id 'org.sonarqube' version '5.0.0.4638'
}
group = 'com.covigator'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '17'
}
jar {
enabled = false
}
def jacocoDir = layout.buildDirectory.dir("reports/")
def jacocoExcludePatterns = [
// 측정에서 제외하는 패턴
"**/*Application*",
"**/config/*",
"**/exception/*",
"**/security/*",
"**/support/*",
"**/dto/*",
"**/*ControllerAdvice*",
"**/common/*",
"**/*SESService*"
]
sonar {
properties {
property "sonar.projectKey", "Covigator_Covigator-BE"
property "sonar.organization", "covigator"
property "sonar.host.url", "https://sonarcloud.io"
property 'sonar.sources', 'src'
property 'sonar.language', 'java'
property 'sonar.sourceEncoding', 'UTF-8'
property 'sonar.exclusions', '**/test/**, **/resources/**, **/*Application*, **/config/**, **/exception/**, **/dto/**, **/security/**, **/support/**, **/*ControllerAdvice*, **/common/*, **/*SESService*'
property 'sonar.test.inclusions', '**/*Test.java'
property 'sonar.java.coveragePlugin', 'jacoco'
property 'sonar.coverage.jacoco.xmlReportPaths', jacocoDir.get().file("jacoco/index.xml").asFile
}
}
jacoco {
toolVersion = '0.8.12'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.hibernate.orm:hibernate-spatial:6.5.2.Final'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'com.h2database:h2'
runtimeOnly 'com.mysql:mysql-connector-j'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
testImplementation 'io.rest-assured:rest-assured'
//jwt
implementation group: 'io.jsonwebtoken', name: 'jjwt', version: '0.12.5'
//spring-doc
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.5.0'
//spring-security-crypto
implementation 'org.springframework.security:spring-security-crypto'
//slack api client
implementation 'com.slack.api:slack-api-client:1.42.0'
//aws
implementation 'io.awspring.cloud:spring-cloud-starter-aws:2.4.4'
//s3-mock
testImplementation 'io.findify:s3mock_2.13:0.2.6'
//websocket
implementation 'org.springframework.boot:spring-boot-starter-websocket'
// mongoDB
implementation 'org.springframework.boot:spring-boot-starter-data-mongodb'
//amazon ses
implementation 'com.amazonaws:aws-java-sdk-ses:1.12.772'
//amazon sns
implementation 'software.amazon.awssdk:sns:2.28.22'
//redis
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
implementation 'org.springframework.retry:spring-retry'
}
tasks.named('test') {
useJUnitPlatform()
finalizedBy 'jacocoTestReport'
}
jacocoTestReport {
dependsOn test //테스트가 수행되어야만 report를 생성할 수 있도록 설정
reports {
html.required.set(true)
xml.required.set(true)
html.destination jacocoDir.get().file("jacoco/index.html").asFile
xml.destination jacocoDir.get().file("jacoco/index.xml").asFile
}
afterEvaluate {
classDirectories.setFrom(
files(classDirectories.files.collect {
fileTree(dir: it, excludes: jacocoExcludePatterns)
})
)
}
finalizedBy jacocoTestCoverageVerification
}
jacocoTestCoverageVerification {
violationRules {
rule {
//rule 활성화
enabled = true
//클래스 단위로 룰 체크
element = 'CLASS'
// rule 을 violate 해도 빌드 성공
failOnViolation = false
// 라인 커버리지를 최소 70% 만족
limit {
counter = 'LINE'
value = 'COVEREDRATIO'
minimum = 0.70
}
// 브랜치 커버리지를 최소 70% 만족
limit {
counter = 'BRANCH'
value = 'COVEREDRATIO'
minimum = 0.70
}
excludes = jacocoExcludePatterns
}
}
}