-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
162 lines (138 loc) · 4.69 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
plugins {
id 'java'
id 'org.springframework.boot' version '2.4.2'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'jacoco'
id "com.ewerk.gradle.plugins.querydsl" version "1.0.10"
// *** Q-Type error 때문에 추가 *** //
id "io.franzbecker.gradle-lombok" version "3.0.0"
}
repositories {
mavenCentral()
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
}
group = 'com.moment'
version = '0.0.1-SNAPSHOT'
description = 'the'
java.sourceCompatibility = JavaVersion.VERSION_11
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-configuration-processor'
// *** spring actuator *** //
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'io.micrometer:micrometer-registry-prometheus' //prometheus가 사용할 수 있는 metric format으로 변환해주는 의존성
// Swagger
implementation 'io.springfox:springfox-swagger-ui:2.9.1'
implementation 'io.springfox:springfox-swagger2:2.9.1'
implementation 'io.swagger:swagger-annotations:1.6.2'
implementation 'io.swagger:swagger-models:1.6.2'
// *** querydsl *** //
implementation 'com.querydsl:querydsl-jpa'
// *** AOP *** //
implementation 'org.springframework.boot:spring-boot-starter-aop'
// JWT토큰 관련 의존성
implementation 'io.jsonwebtoken:jjwt-api:0.11.1'
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.1'
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.1'
implementation 'net.rakugakibox.util:yaml-resource-bundle:1.1'
implementation 'io.fabric8:docker-maven-plugin:0.30.0'
// lombok
implementation 'org.projectlombok:lombok'
compileOnly 'org.projectlombok:lombok'
testCompileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testAnnotationProcessor 'org.projectlombok:lombok'
// DB
runtimeOnly 'com.h2database:h2'
runtimeOnly 'mysql:mysql-connector-java'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
testImplementation 'org.junit.jupiter:junit-jupiter-params'
/** mockito-core **/
testImplementation 'org.mockito:mockito-core:4.3.1'
/** mockito-inline **/
testImplementation 'org.mockito:mockito-inline:4.3.1'
compileOnly 'org.springframework.boot:spring-boot-starter-tomcat'
}
//querydsl
def querydslDir = "$buildDir/generated/querydsl" as String
querydsl {
jpa = true
querydslSourcesDir = querydslDir
}
sourceSets {
main.java.srcDir querydslDir
}
configurations {
querydsl.extendsFrom compileClasspath
}
compileQuerydsl {
options.annotationProcessorPath = configurations.querydsl
}
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'
}
jacoco {
toolVersion = '0.8.7'
}
jacocoTestReport {
reports {
html.required = true
csv.required = false
xml.required = false
}
afterEvaluate {
classDirectories.from = files(classDirectories.files.collect {
fileTree(dir: it, exclude: [
'**/exception/**'
,'**/dto/**'
,'**/repository/**' // DAO(repository)
,'**/embeddedTypes/**' //embeddedTypes 제거
,'**/the/TheApplication*'
,'**/the/**/*Test*'
,'**/the/**/Q*' // Q class 제거
])
})
}
finalizedBy 'jacocoTestCoverageVerification'
}
jacocoTestCoverageVerification {
violationRules {
rule {
// 룰을 키고 끌 수 있다.
enabled = false
// 룰을 체크할 단위
element = 'BUNDLE'
// Java 바이트코드 를 통한 코드실행
limit {
counter = 'INSTRUCTION'
value = 'COVEREDRATIO'
minimum = 0.50
}
}
}
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}