-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
163 lines (140 loc) · 4.33 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
plugins {
id 'org.springframework.boot' version '2.5.0'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id "com.ewerk.gradle.plugins.querydsl" version "1.0.10"
id 'java'
id 'jacoco'
// *** Q-Type error 때문에 추가 *** //
id "io.franzbecker.gradle-lombok" version "3.0.0"
}
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-data-redis' //redis
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
// *** 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'
// *** swagger *** //
implementation 'io.springfox:springfox-swagger2:2.9.2'
implementation 'io.springfox:springfox-swagger-ui:2.9.2'
// *** h2 *** //
runtimeOnly 'com.h2database:h2'
// *** dev tool and test *** //
developmentOnly 'org.springframework.boot:spring-boot-devtools'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
testImplementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.3'
// *** lombok *** //
implementation 'org.projectlombok:lombok'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testAnnotationProcessor 'org.projectlombok:lombok'
testCompileOnly 'org.projectlombok:lombok'
// *** querydsl *** //
implementation 'com.querydsl:querydsl-jpa:4.4.0'
// *** 다국어 처리를 위한 yaml-resource-bundle *** //
implementation 'net.rakugakibox.util:yaml-resource-bundle:1.2'
// *** sms를 이용하기 위한 javaSDK *** //
implementation group: 'net.nurigo', name: 'javaSDK', version: '2.2'
compileOnly group: 'net.nurigo', name: 'javaSDK', version: '2.2'
annotationProcessor group: 'net.nurigo', name: 'javaSDK', version: '2.2'
testAnnotationProcessor group: 'net.nurigo', name: 'javaSDK', version: '2.2'
testCompileOnly group: 'net.nurigo', name: 'javaSDK', version: '2.2'
// *** For APNs ***//
compile group: 'com.turo', name: 'pushy', version: '0.13.9'
implementation group: 'com.notnoop.apns', name: 'apns', version: '1.0.0.Beta6'
//*** For Firebase ***//
implementation 'com.google.firebase:firebase-admin:8.0.1'
//*** okhttp3 ***//
implementation 'com.squareup.okhttp3:okhttp:4.9.1'
}
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 {
toolVersion = '0.8.7'
}
jacocoTestReport {
reports {
html.enabled true
csv.enabled false
xml.enabled false
}
afterEvaluate {
classDirectories.from = files(classDirectories.files.collect {
fileTree(dir: it, exclude: [
'**/exception/**'
,'**/dto/**'
,'**/repository/**' // DAO(repository)
,'**/embeddedTypes/**' //embeddedTypes 제거
,'**/EZY/EzyApplication*'
,'**/EZY/**/*Test*'
,'**/EZY/**/Q*' // Q class 제거
])
})
}
finalizedBy 'jacocoTestCoverageVerification'
}
jacocoTestCoverageVerification {
violationRules {
rule {
// 룰을 키고 끌 수 있다.
enabled = true
// 룰을 체크할 단위
element = 'BUNDLE'
// Java 바이트코드 를 통한 코드실행
limit {
counter = 'INSTRUCTION'
value = 'COVEREDRATIO'
minimum = 0.50
}
}
}
}