forked from depromeet/14th-team5-BE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
169 lines (149 loc) · 5.59 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.1.5'
id 'io.spring.dependency-management' version '1.1.3'
id 'jacoco-report-aggregation'
id "io.sentry.jvm.gradle" version "3.12.0"
}
repositories {
mavenCentral()
}
subprojects {
group = 'com.oing'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'jacoco'
apply plugin: 'jacoco-report-aggregation'
apply plugin: 'io.sentry.jvm.gradle'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
tasks.named('test') {
useJUnitPlatform()
finalizedBy 'jacocoTestReport'
}
jacoco {
toolVersion = '0.8.8'
}
jacocoTestReport {
dependsOn test
reports {
html.required.set(true)
xml.required.set(true)
csv.required.set(true)
html.destination file(layout.buildDirectory.dir("reports/jacoco/index.html"))
xml.destination file(layout.buildDirectory.dir("reports/jacoco/index.xml"))
csv.destination file(layout.buildDirectory.dir("reports/jacoco/index.csv"))
}
def Qdomains = []
for (qPattern in "**/QA".."**/QZ") {
Qdomains.add(qPattern + "*")
}
afterEvaluate {
classDirectories.setFrom(
files(classDirectories.files.collect {
fileTree(dir: it, excludes: [
// 측정 안하고 싶은 패턴
"**/domain/*",
"**/dto/*",
"**/event/*",
"**/exception/*",
"**/util/*",
"**/component/*",
"**/config/*",
"**/job/*",
"**/service/*",
"**/*Application*",
// Querydsl 관련 제거
] + Qdomains)
})
)
}
finalizedBy 'jacocoTestCoverageVerification'
}
jacocoTestCoverageVerification {
def Qdomains = []
for (qPattern in '*.QA'..'*.QZ') { // qPattern = '*.QA', '*.QB', ... '*.QZ'
Qdomains.add(qPattern + '*')
}
violationRules {
rule {
failOnViolation = false
enabled = true
element = 'CLASS'
// 라인 커버리지 설정
limit {
counter = 'LINE'
value = 'COVEREDRATIO'
minimum = 0.70
}
// 브랜치 커버리지 설정
limit {
counter = 'BRANCH'
value = 'COVEREDRATIO'
minimum = 0.70
}
excludes = [
"**.domain.*",
"**.dto.*",
"**.event.*",
"**.exception.*",
"**.util.*",
"**.component.*",
"**.config.*",
"**.job.*",
"**.service.*",
"**.*Application*",
] + Qdomains
}
}
}
sentry {
includeSourceContext = true
org = "sentry"
projectName = "bibbi-prod"
authToken = System.getenv("SENTRY_AUTH_TOKEN")
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'com.querydsl:querydsl-jpa:5.0.0:jakarta'
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.2.0'
runtimeOnly 'io.micrometer:micrometer-registry-prometheus'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'com.github.f4b6a3:ulid-creator:5.2.2'
implementation 'io.jsonwebtoken:jjwt-api:0.11.5'
implementation 'com.google.firebase:firebase-admin:9.2.0'
implementation 'com.google.api-client:google-api-client:1.32.1'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.3'
implementation 'net.javacrumbs.shedlock:shedlock-spring:5.10.0'
implementation 'net.javacrumbs.shedlock:shedlock-provider-jdbc-template:5.10.0'
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.5'
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.5'
implementation("com.nimbusds:nimbus-jose-jwt:9.37")
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'com.querydsl:querydsl-apt:5.0.0:jakarta'
annotationProcessor 'jakarta.annotation:jakarta.annotation-api'
annotationProcessor 'jakarta.persistence:jakarta.persistence-api'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
testImplementation 'org.awaitility:awaitility:4.2.0'
}
springBoot {
buildInfo()
}
}
tasks.named('bootJar') {
enabled = false
}
tasks.named('jar') {
enabled = true
}