-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
180 lines (155 loc) · 4.75 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
/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Java library project to get you started.
* For more details on building Java & JVM projects, please refer to https://docs.gradle.org/8.5/userguide/building_java_projects.html in the Gradle documentation.
* This project uses @Incubating APIs which are subject to change.
*/
plugins {
id "java"
id "jacoco"
id "eclipse" // optional (to generate Eclipse project files)
id "idea" // optional (to generate IntelliJ IDEA project files)
id "io.freefair.lombok" version "8.4"
}
repositories {
mavenCentral()
}
ext {
// Define versions
commonsLang3Version = '3.14.0'
gsonVersion = '2.10.1'
junitJupiterVersion = '5.10.2'
lombokVersion = '1.18.32'
assertjCoreVersion = '3.25.3'
junitPlatformVersion = '1.10.2'
instancioVersion = '5.2.1'
}
dependencies {
implementation platform("org.junit:junit-bom:$junitJupiterVersion")
implementation "org.apache.commons:commons-lang3:$commonsLang3Version"
implementation "commons-lang:commons-lang:2.6"
implementation "com.google.code.gson:gson:$gsonVersion"
implementation "org.projectlombok:lombok:$lombokVersion"
implementation "org.projectlombok:lombok-utils:1.18.12"
compileOnly group: 'org.projectlombok', name: 'lombok', version: '$lombokVersion'
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '$lombokVersion'
testImplementation "org.assertj:assertj-core:$assertjCoreVersion"
testImplementation "org.junit.jupiter:junit-jupiter-api"
testImplementation "org.junit.jupiter:junit-jupiter-engine"
testImplementation "org.junit.jupiter:junit-jupiter-params"
testImplementation "org.junit.platform:junit-platform-runner:$junitPlatformVersion"
testImplementation "org.junit.platform:junit-platform-suite-engine:$junitPlatformVersion"
testImplementation "org.instancio:instancio-junit:$instancioVersion"
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
jacoco {
enabled = true
destinationFile = layout.buildDirectory.file("jacoco/${name}.exec").get().asFile
includes = []
excludes = []
excludeClassLoaders = []
includeNoLocationClasses = false
sessionId = "<auto-generated value>"
dumpOnExit = true
classDumpDir = null
output = JacocoTaskExtension.Output.FILE
address = "localhost"
port = 6300
jmx = false
}
finalizedBy jacocoTestReport // report is always generated after tests run
}
jacoco {
toolVersion = "0.8.9"
reportsDirectory = layout.buildDirectory.dir('jacoco')
}
jacocoTestReport {
group = "reporting"
description = "Generate Jacoco coverage reports after running tests."
dependsOn test // tests are required to run before generating the report
reports {
xml.required = true
csv.required = true
html.required = true
html.outputLocation = layout.buildDirectory.dir('jacocoHtml')
}
}
build.dependsOn jacocoTestReport
jacocoTestCoverageVerification {
violationRules {
rule {
limit {
minimum = 0.65
}
}
failOnViolation true
rule {
enabled = false
element = 'CLASS'
includes = ['com.shortthirdman.quickstart.*']
excludes = ['com.shortthirdman.quickstart.common.*']
limit {
counter = 'LINE'
value = 'TOTALCOUNT'
maximum = 0.65
}
}
}
}
check.dependsOn jacocoTestCoverageVerification
testing {
suites {
// Configure the built-in test suite
test {
// Use JUnit Jupiter test framework
useJUnitJupiter('5.10.2')
}
}
}
group = "com.shortthirdman"
version = '1.0-SNAPSHOT'
sourceCompatibility = "21"
targetCompatibility = "21"
compileJava {
options.incremental = true
options.fork = true
options.failOnError = false
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
//withJavadocJar()
withSourcesJar()
}
jar {
manifest {
attributes("Implementation-Title": "Gradle",
"Implementation-Version": archiveVersion)
}
}
//tasks.withType(JavaCompile).configureEach {
// options.compilerArgs += ['-Xdoclint:none', '-Xlint:none', '-nowarn']
//}
tasks.register('performRelease') {
def isCI = providers.gradleProperty("isCI")
doLast {
if (isCI.present) {
println("Performing release actions")
} else {
throw new InvalidUserDataException("Cannot perform release outside of CI")
}
}
}
tasks.register('showRepos') {
def repositoryNames = repositories.collect { it.name }
doLast {
println "All repos:"
println repositoryNames
}
}