-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathback.gradle
327 lines (280 loc) · 7.79 KB
/
back.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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
// Copyright (c) 2018 Gonzalo Müller Bravo.
// Licensed under the MIT License (MIT), see LICENSE.txt
buildscript {
dependencies {
classpath 'org.gradle:gradle-tooling-api:+'
}
}
plugins {
id 'all.shared.gradle.code-common-tasks' version '1.0.1'
id 'checkstyle'
id 'java'
id 'jacoco'
id 'org.springframework.boot' version '2.1.0.RELEASE'
id 'pmd'
}
final FRONT = ':front'
description 'Backend code'
group 'Code'
evaluationDependsOn(FRONT)
configurations {
monitorClasspath
}
dependencies {
compile 'org.springframework.boot:spring-boot-starter-web:+'
monitorClasspath 'org.springframework.boot:spring-boot-devtools:+'
testCompile 'org.springframework.boot:spring-boot-starter-test:+'
testCompile 'org.junit.jupiter:junit-jupiter-api:+'
testRuntime 'org.junit.jupiter:junit-jupiter-engine:+'
testCompile 'org.mockito:mockito-core:+'
}
apply from: 'local_gradle/coverage.gradle'
apply from: 'local_gradle/hotrun.gradle'
// CONSTANTS
////////////
final INTEGRATION_TEST_FILE_NAME = 'IntegrationTest'
final INTEGRATION_TEST_FILE_PATTERN = "**/*$INTEGRATION_TEST_FILE_NAME.*"
final TEST_COMMON_SOURCE = sourceSets.test.allJava.findAll {
it.name.matches('.*(?<!Test)\\..*')
}
final CHECK_UNIT_TEST_COMMON_CONFIGURATION = {
source = (TEST_COMMON_SOURCE + sourceSets.test.allJava.findAll {
it.name.matches(".*(?<!$INTEGRATION_TEST_FILE_NAME)\\..*")
})
.unique()
classpath = sourceSets.test.output.classesDirs
}
final CHECK_INTEGRATION_TEST_COMMON_CONFIGURATION = {
source = TEST_COMMON_SOURCE + sourceSets.test.allJava.findAll {
it.name.matches(".*$INTEGRATION_TEST_FILE_NAME\\..*")
}
classpath = sourceSets.test.output.classesDirs
}
// Plugin settings
//////////////////
baseStyleConfig.back.complement(checkstyle)
pmd {
toolVersion = BACK$PMD_VERSION
consoleOutput = true
}
baseStyleConfig.back.complement(pmd)
// TASKS
////////
// Assess Unit Test code
////////////////////////
task checkstyleUnitTest(type: Checkstyle) {
description = 'Run Checkstyle analysis for Unit test code.'
group = codeCommonTasks.groupForAssessTasks
shouldRunAfter checkstyleMain
}
checkstyleUnitTest CHECK_UNIT_TEST_COMMON_CONFIGURATION
task pmdUnitTest(type: Pmd) {
description = 'Run PMD analysis for Unit test code.'
group = codeCommonTasks.groupForAssessTasks
shouldRunAfter 'pmdMain', checkstyleUnitTest
}
pmdUnitTest CHECK_UNIT_TEST_COMMON_CONFIGURATION
task assessUnitTest {
dependsOn 'checkstyleUnitTest', 'pmdUnitTest'
}
// Assess Integration Test code
///////////////////////////////
task checkstyleIntegrationTest(type: Checkstyle) {
description = 'Run Checkstyle analysis for Integration test code.'
group = codeCommonTasks.groupForAssessTasks
shouldRunAfter checkstyleMain
}
checkstyleIntegrationTest CHECK_INTEGRATION_TEST_COMMON_CONFIGURATION
task pmdIntegrationTest(type: Pmd) {
description = 'Run PMD analysis for Integration test code.'
group = codeCommonTasks.groupForAssessTasks
shouldRunAfter 'pmdMain', 'checkstyleIntegrationTest'
}
pmdIntegrationTest CHECK_INTEGRATION_TEST_COMMON_CONFIGURATION
task assessIntegrationTest {
dependsOn 'checkstyleIntegrationTest', 'pmdIntegrationTest'
}
// Test code
////////////
final TEST_COMMON_CONFIGURATION = {
testLogging {
events 'failed', 'skipped'
}
}
task unitTest(type: Test) {
// Test task settings
useJUnitPlatform()
// gradle task settings
include '**/*Test.*'
exclude INTEGRATION_TEST_FILE_PATTERN
}
unitTest TEST_COMMON_CONFIGURATION
task integrationTest(type: Test) {
// Test task settings
useJUnitPlatform()
// gradle task settings
include INTEGRATION_TEST_FILE_PATTERN
}
integrationTest TEST_COMMON_CONFIGURATION
// Build
////////
task bootRunDependenciesJar(type: Jar) {
// Jar task settings
final SPRING_BOOT_DEPENDENCIES = configurations.runtime.join(' ')
baseName = "$jar.baseName-dependencies"
version = jar.version
manifest {
attributes 'Class-Path': SPRING_BOOT_DEPENDENCIES
}
// gradle task settings
description 'Sets the classpath into a JAR for using on bootRun.'
group = codeCommonTasks.groupForBuildTasks
inputs.files configurations.runtime.files
inputs.property('springBootDependencies', SPRING_BOOT_DEPENDENCIES)
shouldRunAfter codeCommonTasks.assessMainTask
}
final COMMON_JAR_CONFIGURATION = {
// Jar task settings
baseName = BACK$ARCHIVE_NAME
manifest {
attributes 'Main-Class': BACK$MAIN_CLASS
}
// gradle task settings
doLast {
logger.info "JAR Manifest:$manifest.attributes"
}
}
final PROJECT_FRONT = project(FRONT)
task fixedJar(type: Jar) {
// Jar task settings
classifier = 'fix'
from jar.source
manifest {
attributes 'Class-Path': "$PROJECT_FRONT.assemble.archivePath $bootRunDependenciesJar.archivePath"
}
// gradle task settings
description 'Assembles a fixed JAR archive containing the main classes and fixed classpath for all dependencies.'
group = codeCommonTasks.groupForBuildTasks
dependsOn PROJECT_FRONT.assemble, 'bootRunDependenciesJar'
}
fixedJar COMMON_JAR_CONFIGURATION
// Documentation
////////////////
task monitorClasspath {
description = 'Enables classpath monitoring.'
group = GLOBAL$GROUP_RUN
ext.monitor = false
doLast {
ext.monitor = true
}
}
task monitorRun {
description = 'Runs the project with support for monitoring classpath changes and reloading classes.'
group = GLOBAL$GROUP_RUN
dependsOn = ['monitorClasspath', 'bootRun']
}
task run {
description = bootRun.description
group = GLOBAL$GROUP_RUN
dependsOn = ['bootRun']
}
// Plugin tasks
///////////////
checkstyleMain {
group = codeCommonTasks.groupForAssessTasks
}
checkstyleTest {
group = codeCommonTasks.groupForAssessTasks
}
pmdMain {
group = codeCommonTasks.groupForAssessTasks
shouldRunAfter checkstyleMain
}
pmdTest {
group = codeCommonTasks.groupForAssessTasks
shouldRunAfter 'checkstyleTest'
}
test {
description = ''
exclude '**/*'
}
assemble {
shouldRunAfter check
}
final JACOCO_EXEC_FILE = files("$buildDir/jacoco/unitTest.exec")
jacocoTestReport {
// jacocoTestReport task settings
executionData = JACOCO_EXEC_FILE
afterEvaluate {
classDirectories = files(classDirectories.files.collect {
fileTree(dir: it, exclude: 'fit/your/needs/Main.class')
})
}
reports {
xml.enabled true
}
// gradle task settings
shouldRunAfter = []
doLast {
showRatios jacocoTestReport.reports.xml.destination
}
}
jacocoTestCoverageVerification {
// jacocoTestCoverageVerification task settings
final elementToCheck = 'SOURCEFILE'
final valueToCheck = 'COVEREDRATIO'
final toExclude = ['**/Main.java']
executionData = JACOCO_EXEC_FILE
violationRules {
rule {
element = elementToCheck
excludes = toExclude
limit {
counter = 'BRANCH'
value = valueToCheck
minimum = 0.975
}
}
rule {
element = elementToCheck
excludes = toExclude
limit {
counter = 'INSTRUCTION'
value = valueToCheck
minimum = 0.925
}
}
}
// gradle task settings
shouldRunAfter = [jacocoTestReport]
}
bootRun {
// bootRun task settings
classpath = sourceSets.main.output + files(bootRunDependenciesJar.archivePath) +
files(PROJECT_FRONT.webDir)
jvmArgs "-Dspring.profiles.active=$runningEnvironment"
// gradle task settings
group = GLOBAL$GROUP_RUN
dependsOn += [PROJECT_FRONT.assemble, 'bootRunDependenciesJar']
shouldRunAfter check
mustRunAfter monitorClasspath
doFirst {
if (monitorClasspath.monitor) {
logger.quiet 'Monitor Classpath enabled'
classpath += configurations.monitorClasspath
}
logger.debug "BootRun Classpath:$classpath.files"
}
}
jar {
// Jar task settings
version = BACK$VERSION
// gradle task settings
shouldRunAfter codeCommonTasks.assessMainTask
}
jar COMMON_JAR_CONFIGURATION
tasks.withType(Checkstyle) {
reports {
xml.enabled = false
}
}