@@ -14,7 +14,6 @@ plugins {
14
14
id ' jacoco'
15
15
id ' java-library'
16
16
id ' com.diffplug.spotless' version ' 6.23.0'
17
- id ' checkstyle'
18
17
}
19
18
20
19
ext {
31
30
noticeFile = rootProject. file(' NOTICE' )
32
31
}
33
32
34
- checkstyle {
35
- toolVersion = ' 10.12.2'
36
- }
37
-
38
33
lombok {
39
34
version = " 1.18.30"
40
35
}
@@ -65,8 +60,6 @@ dependencies {
65
60
implementation " org.apache.logging.log4j:log4j-slf4j-impl:2.19.0"
66
61
testImplementation group : ' commons-io' , name : ' commons-io' , version : ' 2.15.1'
67
62
implementation group : ' org.apache.commons' , name : ' commons-text' , version : ' 1.10.0'
68
-
69
- checkstyle " com.puppycrawl.tools:checkstyle:${ project.checkstyle.toolVersion} "
70
63
}
71
64
72
65
publishing {
@@ -111,14 +104,12 @@ compileJava {
111
104
// TODO: check which one should be enabled
112
105
licenseHeaders. enabled = true
113
106
testingConventions. enabled = false
114
- checkstyleTest. enabled = false
115
107
forbiddenApis. ignoreFailures = false
116
108
dependencyLicenses. enabled = false
117
109
thirdPartyAudit. enabled = false
118
110
forbiddenApisTest. ignoreFailures = true
119
111
forbiddenApisMain. ignoreFailures = true
120
112
validateNebulaPom. enabled = false
121
- checkstyleMain. enabled = false
122
113
loggerUsageCheck. enabled = false
123
114
124
115
def _numNodes = findProperty(' numNodes' ) as Integer ?: 1
0 commit comments