-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle
126 lines (110 loc) · 3.01 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
plugins {
id 'org.springframework.boot' version '2.2.5.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id "org.sonarqube" version "2.8"
id 'java'
id 'jacoco'
id 'checkstyle'
id 'net.researchgate.release' version '2.6.0'
}
group = 'me.jysh'
sourceCompatibility = '11'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.postgresql:postgresql:42.2.12'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.testcontainers:testcontainers:1.13.0'
testImplementation 'org.testcontainers:postgresql:1.13.0'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
}
release {
failOnUpdateNeeded = false
failOnCommitNeeded = false
failOnUnversionedFiles = false
failOnSnapshotDependencies = false
tagTemplate = '$version'
newVersionCommitMessage = 'Update Development Version [ci skip]'
tagCommitMessage = 'Tag with Released Version [ci skip]'
preTagCommitMessage = 'Process Gradle Release [ci skip]'
versionPropertyFile = 'gradle.properties'
git {
requireBranch = ''
pushToRemote = 'origin'
pushToBranchPrefix = ''
commitVersionFileOnly = false
signTag = false
}
}
jacoco {
toolVersion = "0.8.5"
}
jacocoTestReport {
reports {
xml.enabled true
csv.enabled false
html.enabled true
html.destination file("$buildDir/reports/jacoco")
}
}
jacocoTestCoverageVerification {
violationRules {
rule {
enabled = true
limit {
counter = 'BRANCH'
minimum = 0.80
}
excludes = []
}
rule {
enabled = true
limit {
counter = 'LINE'
minimum = 0.80
}
excludes = []
}
}
}
sonarqube {
properties {
property "sonar.projectKey", "codeghoul_spring-cicd-demo"
property "sonar.organization", "codeghoul"
property "sonar.host.url", "https://sonarcloud.io"
property "sonar.coverage.jacoco.xmlReportPaths", "${rootProject.buildDir}/reports/jacoco/test/jacocoTestReport.xml"
}
}
checkstyle {
toolVersion = '8.12'
configFile = file("${rootDir}/config/checkstyle/checkstyle.xml")
}
checkstyleMain {
source = 'src/main/java'
}
checkstyleTest {
source = 'src/test/java'
}
tasks.withType(Checkstyle) {
reports {
xml.enabled false
html.enabled true
}
}
test.finalizedBy jacocoTestReport
jacocoTestCoverageVerification.dependsOn jacocoTestReport
check.dependsOn jacocoTestCoverageVerification
test {
useJUnitPlatform()
}