-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
184 lines (148 loc) ยท 4.61 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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
// ๋ผ์ด๋ธ๋ฌ๋ฆฌ ๋ฒ์ ๋ช
์
buildscript {
ext {
queryDslVersion = "5.0.0"
}
}
plugins {
id 'org.springframework.boot' version '2.6.0'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
// QueryDSL
id "com.ewerk.gradle.plugins.querydsl" version "1.0.10"
// asciidoctor
id "org.asciidoctor.jvm.convert" version "3.3.2"
// JACOCO
id 'jacoco'
}
group = 'com.devnity'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
// Spring Basic
implementation 'org.springframework.boot:spring-boot-starter-web'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
// Spring validation
implementation 'org.springframework.boot:spring-boot-starter-validation'
// Spring RestDocs mockmvc
testImplementation 'org.springframework.restdocs:spring-restdocs-mockmvc'
// Spring Cloud AWS
implementation 'org.springframework.cloud:spring-cloud-starter-aws:2.0.1.RELEASE'
// Spring Security
implementation 'org.springframework.boot:spring-boot-starter-security'
testImplementation 'org.springframework.security:spring-security-test'
// Jwt
implementation 'com.auth0:java-jwt:3.18.2'
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"
// Lombok
implementation 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testCompileOnly 'org.projectlombok:lombok'
testAnnotationProcessor 'org.projectlombok:lombok'
// Thymeleaf
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
// JPA
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
// H2
runtimeOnly 'com.h2database:h2'
// MySQL
runtimeOnly 'mysql:mysql-connector-java'
// QueryDSL
implementation 'com.google.code.findbugs:jsr305:3.0.2'
implementation "com.querydsl:querydsl-jpa:${queryDslVersion}"
implementation "com.querydsl:querydsl-apt:${queryDslVersion}"
// Spring Cloud AWS
implementation 'org.springframework.cloud:spring-cloud-starter-aws:2.0.1.RELEASE'
// hibernate validator
implementation 'org.hibernate:hibernate-validator:7.0.1.Final';
// Slack
implementation 'com.squareup.okhttp3:okhttp:4.2.0'
implementation 'com.slack.api:slack-api-model:1.16.0'
implementation 'com.slack.api:slack-api-client:1.16.0'
}
test {
useJUnitPlatform()
}
// ---------------------------- ( QueryDSL ) ----------------------------
def querydslDir = "$buildDir/generated/querydsl"
querydsl {
jpa = true
querydslSourcesDir = querydslDir
}
sourceSets {
main.java.srcDir querydslDir
}
compileQuerydsl{
options.annotationProcessorPath = configurations.querydsl
}
configurations {
querydsl.extendsFrom compileClasspath
}
compileQuerydsl.doFirst {
if(file(querydslDir).exists() )
delete(file(querydslDir))
}
// ---------------------------- ( adoc ์์ฑ ) ----------------------------
// snippets ์์ฑ๋ ๊ฒฝ๋ก ๋ณ์ ์์ฑ
ext {
set('snippetsDir', file("build/generated-snippets"))
}
// .adoc ์คํ ํ์คํฌ
asciidoctor {
inputs.dir snippetsDir
dependsOn test
}
// ---------------------------- ( JACOCO ) ----------------------------
jacoco {
toolVersion = "0.8.7"
}
jacocoTestReport {
reports {
xml.enabled(true) // codecov์์๋ xml ๊ฒฐ๊ณผ๋ฅผ ์ฌ์ฉ
html.enabled(true) // html์ ๋ก์ปฌ์์ ๋ฐ๋ก ๋ณด๊ธฐ ์ ์ฉ
}
finalizedBy 'jacocoTestCoverageVerification'
}
// ์ฌ๊ธฐ์ ์ปค์คํ
๊ฐ๋ฅ
// ์ฐธ๊ณ : https://techblog.woowahan.com/2661/
jacocoTestCoverageVerification {
violationRules {
rule {
limit {
// ํ
์คํธ ์ปค๋ฒ๋ฆฌ์ง ํ๋ ์ค์
minimum = 0.0
}
}
}
}
// ---------------------------- ( Build ) ----------------------------
test {
// ํ
์คํธ์์ ํด๋น ๊ฒฝ๋ก๋ก adoc ๊ฒฐ๊ณผ๋ฌผ output
outputs.dir snippetsDir
useJUnitPlatform()
}
jar {
// ๋น๋์ *-plain.jar ์์ฑํ์ง ์๊ธฐ
enabled = false
}
bootJar {
// bootJar ์์ฑ์ '/static/docs' ๊ฒฝ๋ก์ adoc -> html ๋ณํ ๊ฒฐ๊ณผ๋ฌผ ์ฃผ์
dependsOn asciidoctor
from("${asciidoctor.outputDir}"){
into('BOOT-INF/classes/static/docs')
}
}
build {
// ๋น๋์ JACOCO ์คํ (ํ
์คํธ ์ปค๋ฒ๋ฆฌ์ง ๋ง์กฑ ๋ชปํ๋ฉด ๋น๋ ์คํจ)
dependsOn jacocoTestReport
}