-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
144 lines (127 loc) · 4 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
plugins {
id 'java'
id 'org.springframework.boot' version '2.7.11'
id 'com.diffplug.spotless' version '6.11.0'
id "org.sonarqube" version "3.5.0.2730"
}
repositories {
mavenCentral()
}
apply plugin: 'org.sonarqube'
sonarqube {
properties {
property "sonar.projectKey", "TodaysFail_TodaysFail-Backend"
property "sonar.organization", "sonar-cloud-key-todaysfail"
property "sonar.host.url", "https://sonarcloud.io"
property 'sonar.sources', 'src'
property 'sonar.language', 'java'
property 'sonar.sourceEncoding', 'UTF-8'
property 'sonar.test.inclusions', '**/*Test.java'
property 'sonar.exclusions', '**/test/**, **/Q*.java, **/*Doc*.java, **/resources/** ,**/*Application*.java , **/*Config*.java,' +
'**/*Dto*.java, **/*Request*.java, **/*Response*.java ,**/*Exception*.java ,**/*ErrorCode*.java'
property 'sonar.java.coveragePlugin', 'jacoco'
}
}
allprojects {
group = 'com.todaysfail'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
}
subprojects {
apply plugin: 'java'
apply plugin: 'java-library'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'jacoco'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
jacoco {
toolVersion = '0.8.8'
// reportsDir = ${project.reporting.baseDir}/jacoco
}
jacocoTestReport {
dependsOn test
reports {
html.enabled true // html 설정
csv.enabled true // csv 설정
xml.enabled true
xml.destination file("${buildDir}/reports/jacoco.xml")
}
def Qdomains = []
for (qPattern in '**/QA'..'**/QZ') { // qPattern = '**/QA', '**/QB', ... '*.QZ'
Qdomains.add(qPattern + '*')
}
afterEvaluate {
classDirectories.setFrom(
files(classDirectories.files.collect {
fileTree(dir: it, excludes: [
"**/*Application*",
"**/*Config*",
"**/*Dto*",
"**/*Request*",
"**/*Response*",
"**/*Interceptor*",
"**/*Exception*"
] + Qdomains)
})
)
}
}
apply plugin: 'org.sonarqube'
sonarqube {
properties {
property 'sonar.java.binaries', "${buildDir}/classes"
property 'sonar.coverage.jacoco.xmlReportPaths', "${buildDir}/reports/jacoco.xml"
}
}
repositories {
mavenCentral()
}
dependencies {
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.projectlombok:lombok'
testAnnotationProcessor 'org.projectlombok:lombok'
}
test {
useJUnitPlatform()
finalizedBy jacocoTestReport
}
jar.enabled = false
}
bootJar.enabled = false
spotless {
java {
target("**/*.java")
removeUnusedImports()
trimTrailingWhitespace()
endWithNewline()
importOrder()
indentWithTabs()
googleJavaFormat().aosp()
}
}
tasks.register('createSpotlessCheckPreCommitHook') {
def gitHooksDirectory = new File("$project.rootDir/.git/hooks/")
if (!gitHooksDirectory.exists()) {
gitHooksDirectory.mkdirs()
}
new File("$project.rootDir/.git/hooks", "pre-commit").text =
"""#!/bin/bash
echo "Running spotless check"
./gradlew spotlessCheck
if [ \$? -eq 0 ]
then
echo "Spotless check succeed"
else
echo "Spotless check failed" >&2
exit 1
fi
"""
"chmod +x .git/hooks/pre-commit".execute()
}