@@ -9,6 +9,7 @@ plugins {
9
9
id ' checkstyle'
10
10
id ' org.springframework.boot' version ' 2.6.2'
11
11
id ' com.diffplug.spotless' version ' 6.19.0'
12
+ id ' net.ltgt.errorprone' version ' 3.1.0'
12
13
}
13
14
14
15
repositories {
@@ -93,6 +94,7 @@ configure(this) {
93
94
apply plugin : ' idea'
94
95
apply plugin : ' eclipse'
95
96
apply plugin : ' checkstyle'
97
+ apply plugin : ' net.ltgt.errorprone'
96
98
configurations {
97
99
implementation. setCanBeResolved(true )
98
100
api. setCanBeResolved(true )
@@ -184,6 +186,104 @@ configure(this) {
184
186
checkstyle ' com.puppycrawl.tools:checkstyle:10.3.1'
185
187
checkstyle ' com.github.sevntu-checkstyle:sevntu-checks:1.42.0'
186
188
}
189
+ // Configuration for the errorprone plugin
190
+ // https://github.com/tbroyer/gradle-errorprone-plugin
191
+ dependencies {
192
+ errorprone " com.google.errorprone:error_prone_core:2.20.0"
193
+ }
194
+
195
+ tasks. withType(JavaCompile ) {
196
+ options. errorprone {
197
+ enabled = project. gradle. startParameter. taskNames. contains(' build' ) || project. gradle. startParameter. taskNames. contains(' check' )
198
+ disableWarningsInGeneratedCode = true
199
+ excludedPaths = " .*/build/.*"
200
+ excludedPaths = " .*/gsmastub/.*"
201
+ disable(
202
+ // TODO Remove disabled checks from this list, by fixing remaining usages
203
+ " UnusedVariable" ,
204
+ " TypeParameterUnusedInFormals" ,
205
+ " EmptyBlockTag" ,
206
+ " MissingSummary" ,
207
+ " InvalidParam" ,
208
+ " ReturnFromVoid" ,
209
+ " AlmostJavadoc" ,
210
+ " InvalidBlockTag" ,
211
+ " JavaUtilDate" , // TODO FINERACT-1298
212
+ " ReturnValueIgnored" ,
213
+ " DirectInvocationOnMock" ,
214
+ " CanIgnoreReturnValueSuggester" ,
215
+ " SameNameButDifferent" , // Until errorprone recognizes Lombok
216
+ " MultiVariableDeclaration" , // Until errorprone recognizes Lombok
217
+ " UnnecessaryDefaultInEnumSwitch" // FINERACT-1911
218
+ )
219
+ error(
220
+ " DefaultCharset" ,
221
+ " RemoveUnusedImports" ,
222
+ " WaitNotInLoop" ,
223
+ " ThreeLetterTimeZoneID" ,
224
+ " VariableNameSameAsType" ,
225
+ " UnnecessaryParentheses" ,
226
+ " MultipleTopLevelClasses" ,
227
+ " MixedMutabilityReturnType" ,
228
+ " AssertEqualsArgumentOrderChecker" ,
229
+ " EmptySetMultibindingContributions" ,
230
+ " BigDecimalEquals" ,
231
+ " MixedArrayDimensions" ,
232
+ " PackageLocation" ,
233
+ " UseBinds" ,
234
+ " BadImport" ,
235
+ " IntLongMath" ,
236
+ " FloatCast" ,
237
+ " ReachabilityFenceUsage" ,
238
+ " StreamResourceLeak" ,
239
+ " TruthIncompatibleType" ,
240
+ " ByteBufferBackingArray" ,
241
+ " OrphanedFormatString" ,
242
+ " CatchAndPrintStackTrace" ,
243
+ " ObjectToString" ,
244
+ " StringSplitter" ,
245
+ " AssertThrowsMultipleStatements" ,
246
+ " BoxedPrimitiveConstructor" ,
247
+ " EmptyCatch" ,
248
+ " BoxedPrimitiveEquality" ,
249
+ " SynchronizeOnNonFinalField" ,
250
+ " WildcardImport" ,
251
+ " PrivateConstructorForNoninstantiableModule" ,
252
+ " ClassCanBeStatic" ,
253
+ " ClassNewInstance" ,
254
+ " UnnecessaryStaticImport" ,
255
+ " UnsafeFinalization" ,
256
+ " JavaTimeDefaultTimeZone" ,
257
+ " JodaPlusMinusLong" ,
258
+ " SwitchDefault" ,
259
+ " VarTypeName" ,
260
+ " ArgumentSelectionDefectChecker" ,
261
+ " CompareToZero" ,
262
+ " InjectOnConstructorOfAbstractClass" ,
263
+ " ImmutableEnumChecker" ,
264
+ " NarrowingCompoundAssignment" ,
265
+ " MissingCasesInEnumSwitch" ,
266
+ " ReferenceEquality" ,
267
+ " UndefinedEquals" ,
268
+ " UnescapedEntity" ,
269
+ " ModifyCollectionInEnhancedForLoop" ,
270
+ " NonCanonicalType" ,
271
+ " InvalidInlineTag" ,
272
+ " MutablePublicArray" ,
273
+ " StaticAssignmentInConstructor" ,
274
+ " ProtectedMembersInFinalClass" ,
275
+ " OperatorPrecedence" ,
276
+ " EqualsGetClass" ,
277
+ " EqualsUnsafeCast" ,
278
+ " DoubleBraceInitialization" ,
279
+ " UnusedNestedClass" ,
280
+ " UnusedMethod" ,
281
+ " ModifiedButNotUsed" ,
282
+ " InconsistentCapitalization" ,
283
+ " MissingOverride" ,
284
+ )
285
+ }
286
+ }
187
287
}
188
288
189
289
@@ -192,6 +292,7 @@ checkstyle {
192
292
}
193
293
194
294
295
+
195
296
group = ' org.mifos'
196
297
version = ' 1.0.0-SNAPSHOT'
197
298
sourceCompatibility = JavaVersion . VERSION_17
0 commit comments