-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
101 lines (87 loc) · 2.73 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
ext.projectVersion = '0.0.1'
group = 'com.wypl'
version = projectVersion
apply plugin: 'com.epages.restdocs-api-spec'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
bootJar {
enabled = true
}
dependencies {
implementation project(':common')
implementation project(':application:application-common')
implementation project(':client:aws-s3-client')
testImplementation('org.springframework.boot:spring-boot-starter-test')
testImplementation('com.epages:restdocs-api-spec-mockmvc:0.18.4')
testImplementation('org.springframework.restdocs:spring-restdocs-mockmvc')
testImplementation('org.mockito:mockito-core')
}
/* Jacoco Start */
tasks.withType(JacocoReport).configureEach {
reports {
html.required.set(true)
xml.required.set(true)
html.outputLocation.set(file("reports/jacoco/index.xml"))
xml.outputLocation.set(file("reports/jacoco/test/jacocoTestReport.xml"))
}
classDirectories.setFrom(
files(classDirectories.files.collect {
fileTree(it) {
exclude(
"**/*Application*",
"**/*Configuration*",
"**/*Request*",
"**/*Response*",
"**/common/**",
"**/config/**",
"**/data/**",
"**/exception/**",
"**/properties/**"
)
}
})
)
}
tasks.jacocoTestCoverageVerification {
violationRules {
rule {
enabled = true
element = 'CLASS'
limit {
counter = 'LINE'
value = 'COVEREDRATIO'
minimum = 0.80D
}
excludes = [
"**/*Application*",
"**/*Configuration*",
"**/*Request*",
"**/*Response*",
"**/common/**",
"**/config/**",
"**/data/**",
"**/exception/**",
"**/properties/**"
]
}
}
}
/* Jacoco End */
/* API Docs Start */
openapi3 {
setServer("http://127.0.0.1:8080")
title = "What's Your Plan! Image Server API Docs"
description = "What's Your Plan! Image Server API Description"
version = projectVersion
format = "yaml"
}
tasks.register("copyOasToSwagger", Copy) {
dependsOn(tasks.named("openapi3"))
delete(file("src/main/resources/static/swagger-ui/openapi3.yaml"))
from("build/api-spec/openapi3.yaml")
into("src/main/resources/static/swagger-ui/")
}
/* API Docs End */