Skip to content

Commit 68034b3

Browse files
Remove toolVersion for jacoco and checkstyle
Remove versioning of Jacoco and Checkstyle. Instead they will be updated by Gradle when it is updated. Dependabot does not update tool versions. If issues come up, they can be corrected when Gradle is updated.
1 parent 2f4815d commit 68034b3

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

build.gradle

-7
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ ext {
1818
mockitoVersion = "3.9.0"
1919
jmhLibVersion = "1.21"
2020
guavaVersion = "30.1.1-jre"
21-
jacocoVersion = "0.8.4"
22-
checkstyleVersion = "8.41"
2321
}
2422

2523
def releaseTag = System.getenv("BUILD_TAG")
@@ -164,10 +162,6 @@ task testng(type: Test) {
164162

165163
check.dependsOn testng
166164

167-
jacoco {
168-
toolVersion = jacocoVersion
169-
}
170-
171165
jacocoTestReport {
172166
dependsOn test
173167
dependsOn testng
@@ -182,7 +176,6 @@ check.dependsOn jacocoTestReport
182176

183177
checkstyle {
184178
configFile = rootProject.file("config/checkstyle/checkstyle.xml")
185-
toolVersion = checkstyleVersion
186179
configProperties = [
187180
"checkstyle.suppressions.file": rootProject.file("config/checkstyle/suppressions.xml"),
188181
"checkstyle.header.file": rootProject.file("config/license/HEADER_JAVA")

0 commit comments

Comments
 (0)