Fork me on GitHub

Checkstyle Results

The following document contains the results of Checkstyle 9.3 with sun_checks.xml ruleset.

Summary

Files  Info  Warnings  Errors
39 0 0 967

Files

File  I  W  E
org/codehaus/gmavenplus/groovyworkarounds/DotGroovyFile.java 0 0 6
org/codehaus/gmavenplus/groovyworkarounds/GroovyDocTemplateInfo.java 0 0 14
org/codehaus/gmavenplus/model/IncludeClasspath.java 0 0 3
org/codehaus/gmavenplus/model/Link.java 0 0 4
org/codehaus/gmavenplus/model/internal/Version.java 0 0 24
org/codehaus/gmavenplus/mojo/AbstractCompileMojo.java 0 0 139
org/codehaus/gmavenplus/mojo/AbstractGenerateStubsMojo.java 0 0 109
org/codehaus/gmavenplus/mojo/AbstractGroovyDocMojo.java 0 0 128
org/codehaus/gmavenplus/mojo/AbstractGroovyMojo.java 0 0 48
org/codehaus/gmavenplus/mojo/AbstractGroovySourcesMojo.java 0 0 18
org/codehaus/gmavenplus/mojo/AbstractGroovyStubSourcesMojo.java 0 0 2
org/codehaus/gmavenplus/mojo/AbstractToolsMojo.java 0 0 37
org/codehaus/gmavenplus/mojo/AddSourcesMojo.java 0 0 2
org/codehaus/gmavenplus/mojo/AddStubSourcesMojo.java 0 0 4
org/codehaus/gmavenplus/mojo/AddTestSourcesMojo.java 0 0 4
org/codehaus/gmavenplus/mojo/AddTestStubSourcesMojo.java 0 0 6
org/codehaus/gmavenplus/mojo/CompileMojo.java 0 0 13
org/codehaus/gmavenplus/mojo/CompileTestsMojo.java 0 0 14
org/codehaus/gmavenplus/mojo/ConsoleMojo.java 0 0 55
org/codehaus/gmavenplus/mojo/ExecuteMojo.java 0 0 58
org/codehaus/gmavenplus/mojo/GenerateStubsMojo.java 0 0 16
org/codehaus/gmavenplus/mojo/GenerateTestStubsMojo.java 0 0 17
org/codehaus/gmavenplus/mojo/GroovyDocJarMojo.java 0 0 33
org/codehaus/gmavenplus/mojo/GroovyDocMojo.java 0 0 13
org/codehaus/gmavenplus/mojo/GroovyDocTestsJarMojo.java 0 0 34
org/codehaus/gmavenplus/mojo/GroovyDocTestsMojo.java 0 0 13
org/codehaus/gmavenplus/mojo/RemoveStubsMojo.java 0 0 4
org/codehaus/gmavenplus/mojo/RemoveTestStubsMojo.java 0 0 5
org/codehaus/gmavenplus/mojo/ShellMojo.java 0 0 31
org/codehaus/gmavenplus/util/ClassWrangler.java 0 0 59
org/codehaus/gmavenplus/util/FileUtils.java 0 0 5
org/codehaus/gmavenplus/util/NoExitSecurityManager.java 0 0 1
org/codehaus/gmavenplus/util/ReflectionUtils.java 0 0 48

Rules

Category Rule Violations Severity
coding HiddenField 11  Error
MagicNumber 6  Error
design DesignForExtension 4  Error
FinalClass 2  Error
VisibilityModifier 103  Error
imports AvoidStarImport 2  Error
javadoc JavadocStyle 2  Error
JavadocVariable 3  Error
MissingJavadocMethod 3  Error
misc FinalParameters 33  Error
TodoComment 2  Error
sizes LineLength
  • fileExtensions: "java"
796  Error

Details

org/codehaus/gmavenplus/groovyworkarounds/DotGroovyFile.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 202). 29
 Error sizes LineLength Line is longer than 80 characters (found 149). 30
 Error sizes LineLength Line is longer than 80 characters (found 152). 98
 Error sizes LineLength Line is longer than 80 characters (found 82). 99
 Error sizes LineLength Line is longer than 80 characters (found 82). 117
 Error sizes LineLength Line is longer than 80 characters (found 85). 120

org/codehaus/gmavenplus/groovyworkarounds/GroovyDocTemplateInfo.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 389). 26
 Error sizes LineLength Line is longer than 80 characters (found 83). 49
 Error design VisibilityModifier Variable 'groovyVersion' must be private and have accessor methods. 54
 Error design VisibilityModifier Variable 'templateBaseDir' must be private and have accessor methods. 59
 Error sizes LineLength Line is longer than 80 characters (found 113). 62
 Error misc FinalParameters Parameter version should be final. 66
 Error sizes LineLength Line is longer than 80 characters (found 86). 69
 Error sizes LineLength Line is longer than 80 characters (found 87). 71
 Error design DesignForExtension Class 'GroovyDocTemplateInfo' looks like designed for extension (can be subclassed), but the method 'defaultDocTemplates' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'GroovyDocTemplateInfo' final or making the method 'defaultDocTemplates' static/final/abstract/empty, or adding allowed annotation for the method. 75
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 75
 Error design DesignForExtension Class 'GroovyDocTemplateInfo' looks like designed for extension (can be subclassed), but the method 'defaultPackageTemplates' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'GroovyDocTemplateInfo' final or making the method 'defaultPackageTemplates' static/final/abstract/empty, or adding allowed annotation for the method. 134
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 134
 Error design DesignForExtension Class 'GroovyDocTemplateInfo' looks like designed for extension (can be subclassed), but the method 'defaultClassTemplates' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'GroovyDocTemplateInfo' final or making the method 'defaultClassTemplates' static/final/abstract/empty, or adding allowed annotation for the method. 148
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 148

org/codehaus/gmavenplus/model/IncludeClasspath.java

Severity Category Rule Message Line
 Error javadoc JavadocVariable Missing a Javadoc comment. 7
 Error javadoc JavadocVariable Missing a Javadoc comment. 8
 Error javadoc JavadocVariable Missing a Javadoc comment. 9

org/codehaus/gmavenplus/model/Link.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 96). 17
 Error sizes LineLength Line is longer than 80 characters (found 108). 23
 Error sizes LineLength Line is longer than 80 characters (found 89). 50
 Error sizes LineLength Line is longer than 80 characters (found 91). 68

org/codehaus/gmavenplus/model/internal/Version.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 84). 23
 Error sizes LineLength Line is longer than 80 characters (found 104). 59
 Error sizes LineLength Line is longer than 80 characters (found 103). 62
 Error sizes LineLength Line is longer than 80 characters (found 83). 82
 Error sizes LineLength Line is longer than 80 characters (found 85). 113
 Error coding MagicNumber '4' is a magic number. 115
 Error coding MagicNumber '3' is a magic number. 117
 Error sizes LineLength Line is longer than 80 characters (found 121). 126
 Error coding MagicNumber '3' is a magic number. 132
 Error sizes LineLength Line is longer than 80 characters (found 127). 136
 Error coding MagicNumber '4' is a magic number. 142
 Error sizes LineLength Line is longer than 80 characters (found 98). 152
 Error sizes LineLength Line is longer than 80 characters (found 110). 171
 Error sizes LineLength Line is longer than 80 characters (found 122). 209
 Error sizes LineLength Line is longer than 80 characters (found 140). 210
 Error sizes LineLength Line is longer than 80 characters (found 116). 213
 Error sizes LineLength Line is longer than 80 characters (found 82). 214
 Error sizes LineLength Line is longer than 80 characters (found 122). 222
 Error sizes LineLength Line is longer than 80 characters (found 104). 226
 Error sizes LineLength Line is longer than 80 characters (found 116). 227
 Error sizes LineLength Line is longer than 80 characters (found 82). 228
 Error sizes LineLength Line is longer than 80 characters (found 85). 230
 Error sizes LineLength Line is longer than 80 characters (found 125). 231
 Error sizes LineLength Line is longer than 80 characters (found 100). 242

org/codehaus/gmavenplus/mojo/AbstractCompileMojo.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 89). 50
 Error sizes LineLength Line is longer than 80 characters (found 87). 70
 Error sizes LineLength Line is longer than 80 characters (found 89). 75
 Error sizes LineLength Line is longer than 80 characters (found 89). 80
 Error sizes LineLength Line is longer than 80 characters (found 87). 105
 Error sizes LineLength Line is longer than 80 characters (found 87). 110
 Error sizes LineLength Line is longer than 80 characters (found 89). 115
 Error sizes LineLength Line is longer than 80 characters (found 89). 120
 Error sizes LineLength Line is longer than 80 characters (found 89). 125
 Error sizes LineLength Line is longer than 80 characters (found 89). 130
 Error sizes LineLength Line is longer than 80 characters (found 89). 135
 Error sizes LineLength Line is longer than 80 characters (found 89). 150
 Error sizes LineLength Line is longer than 80 characters (found 87). 165
 Error sizes LineLength Line is longer than 80 characters (found 87). 170
 Error design VisibilityModifier Variable 'sourceEncoding' must be private and have accessor methods. 181
 Error sizes LineLength Line is longer than 80 characters (found 114). 204
 Error sizes LineLength Line is longer than 80 characters (found 128). 205
 Error sizes LineLength Line is longer than 80 characters (found 112). 206
 Error sizes LineLength Line is longer than 80 characters (found 100). 207
 Error design VisibilityModifier Variable 'targetBytecode' must be private and have accessor methods. 218
 Error sizes LineLength Line is longer than 80 characters (found 113). 221
 Error design VisibilityModifier Variable 'skipBytecodeCheck' must be private and have accessor methods. 226
 Error design VisibilityModifier Variable 'debug' must be private and have accessor methods. 232
 Error design VisibilityModifier Variable 'verbose' must be private and have accessor methods. 238
 Error design VisibilityModifier Variable 'warningLevel' must be private and have accessor methods. 254
 Error sizes LineLength Line is longer than 80 characters (found 138). 257
 Error design VisibilityModifier Variable 'tolerance' must be private and have accessor methods. 260
 Error sizes LineLength Line is longer than 80 characters (found 109). 263
 Error design VisibilityModifier Variable 'invokeDynamic' must be private and have accessor methods. 267
 Error design VisibilityModifier Variable 'parallelParsing' must be private and have accessor methods. 276
 Error sizes LineLength Line is longer than 80 characters (found 125). 279
 Error sizes LineLength Line is longer than 80 characters (found 105). 280
 Error design VisibilityModifier Variable 'configScript' must be private and have accessor methods. 283
 Error sizes LineLength Line is longer than 80 characters (found 109). 286
 Error design VisibilityModifier Variable 'parameters' must be private and have accessor methods. 290
 Error sizes LineLength Line is longer than 80 characters (found 118). 299
 Error design VisibilityModifier Variable 'includeClasspath' must be private and have accessor methods. 304
 Error sizes LineLength Line is longer than 80 characters (found 108). 308
 Error design VisibilityModifier Variable 'previewFeatures' must be private and have accessor methods. 313
 Error sizes LineLength Line is longer than 80 characters (found 87). 320
 Error sizes LineLength Line is longer than 80 characters (found 92). 321
 Error sizes LineLength Line is longer than 80 characters (found 99). 322
 Error sizes LineLength Line is longer than 80 characters (found 96). 323
 Error sizes LineLength Line is longer than 80 characters (found 112). 324
 Error sizes LineLength Line is longer than 80 characters (found 90). 325
 Error sizes LineLength Line is longer than 80 characters (found 123). 328
 Error sizes LineLength Line is longer than 80 characters (found 141). 329
 Error sizes LineLength Line is longer than 80 characters (found 84). 338
 Error sizes LineLength Line is longer than 80 characters (found 216). 341
 Error sizes LineLength Line is longer than 80 characters (found 122). 350
 Error sizes LineLength Line is longer than 80 characters (found 110). 351
 Error sizes LineLength Line is longer than 80 characters (found 98). 352
 Error sizes LineLength Line is longer than 80 characters (found 118). 355
 Error sizes LineLength Line is longer than 80 characters (found 196). 356
 Error sizes LineLength Line is longer than 80 characters (found 143). 357
 Error sizes LineLength Line is longer than 80 characters (found 196). 360
 Error sizes LineLength Line is longer than 80 characters (found 83). 363
 Error sizes LineLength Line is longer than 80 characters (found 108). 366
 Error sizes LineLength Line is longer than 80 characters (found 103). 367
 Error sizes LineLength Line is longer than 80 characters (found 88). 379
 Error sizes LineLength Line is longer than 80 characters (found 115). 381
 Error sizes LineLength Line is longer than 80 characters (found 112). 382
 Error sizes LineLength Line is longer than 80 characters (found 128). 383
 Error sizes LineLength Line is longer than 80 characters (found 366). 385
 Error sizes LineLength Line is longer than 80 characters (found 246). 388
 Error sizes LineLength Line is longer than 80 characters (found 205). 390
 Error sizes LineLength Line is longer than 80 characters (found 91). 393
 Error sizes LineLength Line is longer than 80 characters (found 87). 405
 Error sizes LineLength Line is longer than 80 characters (found 113). 408
 Error sizes LineLength Line is longer than 80 characters (found 120). 409
 Error sizes LineLength Line is longer than 80 characters (found 117). 410
 Error sizes LineLength Line is longer than 80 characters (found 133). 411
 Error sizes LineLength Line is longer than 80 characters (found 232). 414
 Error sizes LineLength Line is longer than 80 characters (found 102). 415
 Error sizes LineLength Line is longer than 80 characters (found 148). 418
 Error sizes LineLength Line is longer than 80 characters (found 236). 420
 Error sizes LineLength Line is longer than 80 characters (found 86). 422
 Error sizes LineLength Line is longer than 80 characters (found 132). 423
 Error sizes LineLength Line is longer than 80 characters (found 94). 424
 Error sizes LineLength Line is longer than 80 characters (found 82). 426
 Error sizes LineLength Line is longer than 80 characters (found 147). 427
 Error sizes LineLength Line is longer than 80 characters (found 115). 428
 Error sizes LineLength Line is longer than 80 characters (found 100). 429
 Error sizes LineLength Line is longer than 80 characters (found 193). 430
 Error sizes LineLength Line is longer than 80 characters (found 163). 431
 Error sizes LineLength Line is longer than 80 characters (found 214). 433
 Error sizes LineLength Line is longer than 80 characters (found 99). 434
 Error sizes LineLength Line is longer than 80 characters (found 104). 435
 Error sizes LineLength Line is longer than 80 characters (found 118). 438
 Error sizes LineLength Line is longer than 80 characters (found 122). 439
 Error sizes LineLength Line is longer than 80 characters (found 128). 440
 Error sizes LineLength Line is longer than 80 characters (found 122). 441
 Error sizes LineLength Line is longer than 80 characters (found 173). 442
 Error sizes LineLength Line is longer than 80 characters (found 131). 445
 Error sizes LineLength Line is longer than 80 characters (found 296). 446
 Error sizes LineLength Line is longer than 80 characters (found 150). 448
 Error sizes LineLength Line is longer than 80 characters (found 186). 451
 Error sizes LineLength Line is longer than 80 characters (found 139). 455
 Error sizes LineLength Line is longer than 80 characters (found 162). 457
 Error sizes LineLength Line is longer than 80 characters (found 192). 462
 Error sizes LineLength Line is longer than 80 characters (found 189). 467
 Error sizes LineLength Line is longer than 80 characters (found 179). 470
 Error sizes LineLength Line is longer than 80 characters (found 238). 473
 Error sizes LineLength Line is longer than 80 characters (found 140). 479
 Error sizes LineLength Line is longer than 80 characters (found 179). 481
 Error sizes LineLength Line is longer than 80 characters (found 233). 484
 Error sizes LineLength Line is longer than 80 characters (found 130). 488
 Error sizes LineLength Line is longer than 80 characters (found 184). 489
 Error sizes LineLength Line is longer than 80 characters (found 117). 501
 Error sizes LineLength Line is longer than 80 characters (found 85). 502
 Error sizes LineLength Line is longer than 80 characters (found 352). 506
 Error sizes LineLength Line is longer than 80 characters (found 156). 508
 Error sizes LineLength Line is longer than 80 characters (found 141). 514
 Error sizes LineLength Line is longer than 80 characters (found 140). 518
 Error sizes LineLength Line is longer than 80 characters (found 140). 522
 Error sizes LineLength Line is longer than 80 characters (found 146). 526
 Error sizes LineLength Line is longer than 80 characters (found 128). 529
 Error sizes LineLength Line is longer than 80 characters (found 168). 530
 Error sizes LineLength Line is longer than 80 characters (found 140). 534
 Error sizes LineLength Line is longer than 80 characters (found 140). 538
 Error sizes LineLength Line is longer than 80 characters (found 146). 542
 Error sizes LineLength Line is longer than 80 characters (found 127). 545
 Error sizes LineLength Line is longer than 80 characters (found 196). 546
 Error sizes LineLength Line is longer than 80 characters (found 111). 548
 Error sizes LineLength Line is longer than 80 characters (found 128). 549
 Error sizes LineLength Line is longer than 80 characters (found 197). 550
 Error sizes LineLength Line is longer than 80 characters (found 99). 554
 Error sizes LineLength Line is longer than 80 characters (found 103). 555
 Error sizes LineLength Line is longer than 80 characters (found 196). 556
 Error sizes LineLength Line is longer than 80 characters (found 155). 557
 Error sizes LineLength Line is longer than 80 characters (found 197). 558
 Error sizes LineLength Line is longer than 80 characters (found 140). 562
 Error sizes LineLength Line is longer than 80 characters (found 142). 564
 Error sizes LineLength Line is longer than 80 characters (found 140). 566
 Error sizes LineLength Line is longer than 80 characters (found 146). 568
 Error sizes LineLength Line is longer than 80 characters (found 221). 569
 Error sizes LineLength Line is longer than 80 characters (found 89). 573
 Error misc FinalParameters Parameter targetBytecode should be final. 573
 Error sizes LineLength Line is longer than 80 characters (found 88). 580

org/codehaus/gmavenplus/mojo/AbstractGenerateStubsMojo.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 87). 47
 Error sizes LineLength Line is longer than 80 characters (found 89). 52
 Error sizes LineLength Line is longer than 80 characters (found 87). 72
 Error sizes LineLength Line is longer than 80 characters (found 89). 77
 Error sizes LineLength Line is longer than 80 characters (found 89). 82
 Error sizes LineLength Line is longer than 80 characters (found 87). 102
 Error sizes LineLength Line is longer than 80 characters (found 87). 107
 Error sizes LineLength Line is longer than 80 characters (found 89). 112
 Error sizes LineLength Line is longer than 80 characters (found 89). 117
 Error sizes LineLength Line is longer than 80 characters (found 89). 122
 Error sizes LineLength Line is longer than 80 characters (found 89). 127
 Error sizes LineLength Line is longer than 80 characters (found 89). 132
 Error sizes LineLength Line is longer than 80 characters (found 87). 157
 Error sizes LineLength Line is longer than 80 characters (found 87). 162
 Error design VisibilityModifier Variable 'sourceEncoding' must be private and have accessor methods. 178
 Error sizes LineLength Line is longer than 80 characters (found 114). 201
 Error sizes LineLength Line is longer than 80 characters (found 128). 202
 Error sizes LineLength Line is longer than 80 characters (found 112). 203
 Error sizes LineLength Line is longer than 80 characters (found 100). 204
 Error design VisibilityModifier Variable 'targetBytecode' must be private and have accessor methods. 217
 Error sizes LineLength Line is longer than 80 characters (found 113). 220
 Error design VisibilityModifier Variable 'skipBytecodeCheck' must be private and have accessor methods. 225
 Error design VisibilityModifier Variable 'debug' must be private and have accessor methods. 231
 Error design VisibilityModifier Variable 'verbose' must be private and have accessor methods. 237
 Error design VisibilityModifier Variable 'warningLevel' must be private and have accessor methods. 253
 Error sizes LineLength Line is longer than 80 characters (found 138). 256
 Error design VisibilityModifier Variable 'tolerance' must be private and have accessor methods. 259
 Error sizes LineLength Line is longer than 80 characters (found 118). 268
 Error design VisibilityModifier Variable 'includeClasspath' must be private and have accessor methods. 273
 Error sizes LineLength Line is longer than 80 characters (found 96). 281
 Error sizes LineLength Line is longer than 80 characters (found 103). 282
 Error sizes LineLength Line is longer than 80 characters (found 100). 283
 Error sizes LineLength Line is longer than 80 characters (found 116). 284
 Error sizes LineLength Line is longer than 80 characters (found 90). 285
 Error sizes LineLength Line is longer than 80 characters (found 260). 287
 Error sizes LineLength Line is longer than 80 characters (found 81). 289
 Error sizes LineLength Line is longer than 80 characters (found 84). 296
 Error sizes LineLength Line is longer than 80 characters (found 226). 299
 Error sizes LineLength Line is longer than 80 characters (found 122). 308
 Error sizes LineLength Line is longer than 80 characters (found 130). 309
 Error sizes LineLength Line is longer than 80 characters (found 98). 310
 Error sizes LineLength Line is longer than 80 characters (found 111). 313
 Error sizes LineLength Line is longer than 80 characters (found 196). 314
 Error sizes LineLength Line is longer than 80 characters (found 229). 315
 Error sizes LineLength Line is longer than 80 characters (found 144). 318
 Error sizes LineLength Line is longer than 80 characters (found 99). 321
 Error sizes LineLength Line is longer than 80 characters (found 81). 327
 Error sizes LineLength Line is longer than 80 characters (found 103). 330
 Error sizes LineLength Line is longer than 80 characters (found 100). 331
 Error sizes LineLength Line is longer than 80 characters (found 116). 332
 Error sizes LineLength Line is longer than 80 characters (found 201). 334
 Error sizes LineLength Line is longer than 80 characters (found 102). 335
 Error sizes LineLength Line is longer than 80 characters (found 118). 336
 Error sizes LineLength Line is longer than 80 characters (found 122). 337
 Error sizes LineLength Line is longer than 80 characters (found 128). 338
 Error sizes LineLength Line is longer than 80 characters (found 122). 339
 Error sizes LineLength Line is longer than 80 characters (found 173). 340
 Error sizes LineLength Line is longer than 80 characters (found 139). 342
 Error sizes LineLength Line is longer than 80 characters (found 134). 347
 Error sizes LineLength Line is longer than 80 characters (found 84). 355
 Error sizes LineLength Line is longer than 80 characters (found 95). 358
 Error sizes LineLength Line is longer than 80 characters (found 97). 359
 Error sizes LineLength Line is longer than 80 characters (found 100). 360
 Error sizes LineLength Line is longer than 80 characters (found 116). 361
 Error sizes LineLength Line is longer than 80 characters (found 285). 363
 Error sizes LineLength Line is longer than 80 characters (found 85). 368
 Error sizes LineLength Line is longer than 80 characters (found 140). 370
 Error sizes LineLength Line is longer than 80 characters (found 93). 373
 Error sizes LineLength Line is longer than 80 characters (found 114). 379
 Error sizes LineLength Line is longer than 80 characters (found 112). 388
 Error sizes LineLength Line is longer than 80 characters (found 123). 391
 Error misc FinalParameters Parameter outputDirectory should be final. 399
 Error sizes LineLength Line is longer than 80 characters (found 100). 401
 Error sizes LineLength Line is longer than 80 characters (found 86). 405
 Error sizes LineLength Line is longer than 80 characters (found 123). 406
 Error sizes LineLength Line is longer than 80 characters (found 118). 407
 Error sizes LineLength Line is longer than 80 characters (found 87). 408
 Error sizes LineLength Line is longer than 80 characters (found 101). 416
 Error sizes LineLength Line is longer than 80 characters (found 117). 422
 Error sizes LineLength Line is longer than 80 characters (found 85). 423
 Error sizes LineLength Line is longer than 80 characters (found 352). 427
 Error sizes LineLength Line is longer than 80 characters (found 156). 429
 Error sizes LineLength Line is longer than 80 characters (found 141). 435
 Error sizes LineLength Line is longer than 80 characters (found 140). 439
 Error sizes LineLength Line is longer than 80 characters (found 140). 443
 Error sizes LineLength Line is longer than 80 characters (found 146). 447
 Error sizes LineLength Line is longer than 80 characters (found 128). 450
 Error sizes LineLength Line is longer than 80 characters (found 168). 451
 Error sizes LineLength Line is longer than 80 characters (found 140). 455
 Error sizes LineLength Line is longer than 80 characters (found 140). 459
 Error sizes LineLength Line is longer than 80 characters (found 146). 463
 Error sizes LineLength Line is longer than 80 characters (found 127). 466
 Error sizes LineLength Line is longer than 80 characters (found 196). 467
 Error sizes LineLength Line is longer than 80 characters (found 111). 469
 Error sizes LineLength Line is longer than 80 characters (found 128). 470
 Error sizes LineLength Line is longer than 80 characters (found 197). 471
 Error sizes LineLength Line is longer than 80 characters (found 99). 475
 Error sizes LineLength Line is longer than 80 characters (found 103). 476
 Error sizes LineLength Line is longer than 80 characters (found 196). 477
 Error sizes LineLength Line is longer than 80 characters (found 155). 478
 Error sizes LineLength Line is longer than 80 characters (found 197). 479
 Error sizes LineLength Line is longer than 80 characters (found 140). 483
 Error sizes LineLength Line is longer than 80 characters (found 142). 485
 Error sizes LineLength Line is longer than 80 characters (found 140). 487
 Error sizes LineLength Line is longer than 80 characters (found 146). 489
 Error sizes LineLength Line is longer than 80 characters (found 221). 490
 Error sizes LineLength Line is longer than 80 characters (found 89). 494
 Error misc FinalParameters Parameter targetBytecode should be final. 494
 Error sizes LineLength Line is longer than 80 characters (found 88). 501

org/codehaus/gmavenplus/mojo/AbstractGroovyDocMojo.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 90). 60
 Error sizes LineLength Line is longer than 80 characters (found 83). 65
 Error sizes LineLength Line is longer than 80 characters (found 83). 70
 Error design VisibilityModifier Variable 'windowTitle' must be private and have accessor methods. 86
 Error design VisibilityModifier Variable 'docTitle' must be private and have accessor methods. 92
 Error design VisibilityModifier Variable 'footer' must be private and have accessor methods. 98
 Error design VisibilityModifier Variable 'header' must be private and have accessor methods. 104
 Error design VisibilityModifier Variable 'displayAuthor' must be private and have accessor methods. 110
 Error design VisibilityModifier Variable 'overviewFile' must be private and have accessor methods. 116
 Error sizes LineLength Line is longer than 80 characters (found 111). 119
 Error design VisibilityModifier Variable 'stylesheetFile' must be private and have accessor methods. 122
 Error design VisibilityModifier Variable 'stylesheetEncoding' must be private and have accessor methods. 128
 Error design VisibilityModifier Variable 'scope' must be private and have accessor methods. 140
 Error sizes LineLength Line is longer than 80 characters (found 122). 143
 Error design VisibilityModifier Variable 'links' must be private and have accessor methods. 148
 Error design VisibilityModifier Variable 'skipGroovyDoc' must be private and have accessor methods. 156
 Error sizes LineLength Line is longer than 80 characters (found 118). 165
 Error design VisibilityModifier Variable 'includeClasspath' must be private and have accessor methods. 170
 Error sizes LineLength Line is longer than 80 characters (found 111). 173
 Error design VisibilityModifier Variable 'defaultDocTemplates' must be private and have accessor methods. 178
 Error sizes LineLength Line is longer than 80 characters (found 107). 181
 Error design VisibilityModifier Variable 'defaultPackageTemplates' must be private and have accessor methods. 186
 Error sizes LineLength Line is longer than 80 characters (found 105). 189
 Error design VisibilityModifier Variable 'defaultClassTemplates' must be private and have accessor methods. 194
 Error sizes LineLength Line is longer than 80 characters (found 120). 197
 Error design VisibilityModifier Variable 'groovyDocToolClass' must be private and have accessor methods. 203
 Error sizes LineLength Line is longer than 80 characters (found 117). 206
 Error design VisibilityModifier Variable 'outputToolClass' must be private and have accessor methods. 212
 Error sizes LineLength Line is longer than 80 characters (found 116). 215
 Error design VisibilityModifier Variable 'fileOutputToolClass' must be private and have accessor methods. 221
 Error sizes LineLength Line is longer than 80 characters (found 117). 224
 Error design VisibilityModifier Variable 'resourceManagerClass' must be private and have accessor methods. 230
 Error sizes LineLength Line is longer than 80 characters (found 118). 233
 Error design VisibilityModifier Variable 'classpathResourceManagerClass' must be private and have accessor methods. 239
 Error sizes LineLength Line is longer than 80 characters (found 109). 242
 Error sizes LineLength Line is longer than 80 characters (found 115). 243
 Error design VisibilityModifier Variable 'linkArgumentClass' must be private and have accessor methods. 249
 Error sizes LineLength Line is longer than 80 characters (found 85). 252
 Error design VisibilityModifier Variable 'attachGroovyDocAnnotation' must be private and have accessor methods. 257
 Error sizes LineLength Line is longer than 80 characters (found 101). 265
 Error sizes LineLength Line is longer than 80 characters (found 108). 266
 Error sizes LineLength Line is longer than 80 characters (found 105). 267
 Error sizes LineLength Line is longer than 80 characters (found 121). 268
 Error sizes LineLength Line is longer than 80 characters (found 90). 269
 Error sizes LineLength Line is longer than 80 characters (found 271). 271
 Error sizes LineLength Line is longer than 80 characters (found 104). 273
 Error sizes LineLength Line is longer than 80 characters (found 97). 278
 Error sizes LineLength Line is longer than 80 characters (found 84). 284
 Error sizes LineLength Line is longer than 80 characters (found 225). 288
 Error sizes LineLength Line is longer than 80 characters (found 148). 292
 Error sizes LineLength Line is longer than 80 characters (found 207). 293
 Error sizes LineLength Line is longer than 80 characters (found 174). 298
 Error coding HiddenField 'groovyDocToolClass' hides a field. 298
 Error sizes LineLength Line is longer than 80 characters (found 162). 299
 Error coding HiddenField 'outputToolClass' hides a field. 299
 Error sizes LineLength Line is longer than 80 characters (found 178). 300
 Error coding HiddenField 'fileOutputToolClass' hides a field. 300
 Error sizes LineLength Line is longer than 80 characters (found 182). 301
 Error coding HiddenField 'resourceManagerClass' hides a field. 301
 Error sizes LineLength Line is longer than 80 characters (found 218). 302
 Error coding HiddenField 'classpathResourceManagerClass' hides a field. 302
 Error sizes LineLength Line is longer than 80 characters (found 272). 309
 Error sizes LineLength Line is longer than 80 characters (found 88). 313
 Error sizes LineLength Line is longer than 80 characters (found 108). 314
 Error sizes LineLength Line is longer than 80 characters (found 114). 320
 Error sizes LineLength Line is longer than 80 characters (found 289). 323
 Error sizes LineLength Line is longer than 80 characters (found 102). 326
 Error sizes LineLength Line is longer than 80 characters (found 97). 327
 Error sizes LineLength Line is longer than 80 characters (found 199). 330
 Error sizes LineLength Line is longer than 80 characters (found 129). 333
 Error sizes LineLength Line is longer than 80 characters (found 107). 353
 Error sizes LineLength Line is longer than 80 characters (found 90). 366
 Error sizes LineLength Line is longer than 80 characters (found 107). 376
 Error sizes LineLength Line is longer than 80 characters (found 114). 377
 Error sizes LineLength Line is longer than 80 characters (found 111). 378
 Error sizes LineLength Line is longer than 80 characters (found 127). 379
 Error sizes LineLength Line is longer than 80 characters (found 141). 382
 Error coding HiddenField 'linkArgumentClass' hides a field. 385
 Error sizes LineLength Line is longer than 80 characters (found 115). 388
 Error sizes LineLength Line is longer than 80 characters (found 113). 390
 Error sizes LineLength Line is longer than 80 characters (found 83). 393
 Error sizes LineLength Line is longer than 80 characters (found 88). 396
 Error sizes LineLength Line is longer than 80 characters (found 96). 397
 Error sizes LineLength Line is longer than 80 characters (found 96). 399
 Error sizes LineLength Line is longer than 80 characters (found 211). 405
 Error sizes LineLength Line is longer than 80 characters (found 89). 418
 Error sizes LineLength Line is longer than 80 characters (found 83). 419
 Error sizes LineLength Line is longer than 80 characters (found 86). 420
 Error sizes LineLength Line is longer than 80 characters (found 113). 423
 Error sizes LineLength Line is longer than 80 characters (found 110). 424
 Error sizes LineLength Line is longer than 80 characters (found 126). 425
 Error sizes LineLength Line is longer than 80 characters (found 385). 427
 Error coding HiddenField 'groovyDocToolClass' hides a field. 427
 Error coding HiddenField 'resourceManagerClass' hides a field. 427
 Error sizes LineLength Line is longer than 80 characters (found 198). 430
 Error sizes LineLength Line is longer than 80 characters (found 116). 433
 Error sizes LineLength Line is longer than 80 characters (found 128). 434
 Error sizes LineLength Line is longer than 80 characters (found 122). 435
 Error sizes LineLength Line is longer than 80 characters (found 178). 440
 Error sizes LineLength Line is longer than 80 characters (found 116). 443
 Error sizes LineLength Line is longer than 80 characters (found 128). 444
 Error sizes LineLength Line is longer than 80 characters (found 122). 445
 Error sizes LineLength Line is longer than 80 characters (found 258). 449
 Error sizes LineLength Line is longer than 80 characters (found 166). 452
 Error sizes LineLength Line is longer than 80 characters (found 116). 455
 Error sizes LineLength Line is longer than 80 characters (found 128). 456
 Error sizes LineLength Line is longer than 80 characters (found 121). 457
 Error sizes LineLength Line is longer than 80 characters (found 258). 460
 Error sizes LineLength Line is longer than 80 characters (found 100). 468
 Error sizes LineLength Line is longer than 80 characters (found 85). 470
 Error sizes LineLength Line is longer than 80 characters (found 83). 471
 Error sizes LineLength Line is longer than 80 characters (found 122). 474
 Error sizes LineLength Line is longer than 80 characters (found 118). 485
 Error sizes LineLength Line is longer than 80 characters (found 83). 503
 Error sizes LineLength Line is longer than 80 characters (found 82). 505
 Error sizes LineLength Line is longer than 80 characters (found 105). 506
 Error sizes LineLength Line is longer than 80 characters (found 121). 507
 Error sizes LineLength Line is longer than 80 characters (found 284). 509
 Error coding HiddenField 'groovyDocToolClass' hides a field. 509
 Error coding HiddenField 'outputToolClass' hides a field. 509
 Error sizes LineLength Line is longer than 80 characters (found 109). 517
 Error sizes LineLength Line is longer than 80 characters (found 168). 524
 Error sizes LineLength Line is longer than 80 characters (found 89). 533
 Error sizes LineLength Line is longer than 80 characters (found 146). 539
 Error sizes LineLength Line is longer than 80 characters (found 126). 541
 Error sizes LineLength Line is longer than 80 characters (found 141). 550
 Error sizes LineLength Line is longer than 80 characters (found 121). 552
 Error sizes LineLength Line is longer than 80 characters (found 109). 560

org/codehaus/gmavenplus/mojo/AbstractGroovyMojo.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 94). 47
 Error sizes LineLength Line is longer than 80 characters (found 90). 52
 Error sizes LineLength Line is longer than 80 characters (found 95). 75
 Error design VisibilityModifier Variable 'classWrangler' must be private and have accessor methods. 77
 Error sizes LineLength Line is longer than 80 characters (found 229). 79
 Error design VisibilityModifier Variable 'project' must be private and have accessor methods. 85
 Error design VisibilityModifier Variable 'session' must be private and have accessor methods. 91
 Error design VisibilityModifier Variable 'pluginArtifacts' must be private and have accessor methods. 97
 Error design VisibilityModifier Variable 'mojoExecution' must be private and have accessor methods. 103
 Error design VisibilityModifier Variable 'minGroovyVersion' must be private and have accessor methods. 109
 Error sizes LineLength Line is longer than 80 characters (found 107). 128
 Error sizes LineLength Line is longer than 80 characters (found 105). 130
 Error sizes LineLength Line is longer than 80 characters (found 109). 137
 Error sizes LineLength Line is longer than 80 characters (found 108). 139
 Error sizes LineLength Line is longer than 80 characters (found 101). 146
 Error sizes LineLength Line is longer than 80 characters (found 102). 148
 Error sizes LineLength Line is longer than 80 characters (found 83). 173
 Error sizes LineLength Line is longer than 80 characters (found 81). 175
 Error sizes LineLength Line is longer than 80 characters (found 91). 178
 Error sizes LineLength Line is longer than 80 characters (found 88). 182
 Error sizes LineLength Line is longer than 80 characters (found 127). 185
 Error misc FinalParameters Parameter version should be final. 187
 Error sizes LineLength Line is longer than 80 characters (found 86). 188
 Error sizes LineLength Line is longer than 80 characters (found 118). 195
 Error misc FinalParameters Parameter version should be final. 197
 Error sizes LineLength Line is longer than 80 characters (found 81). 198
 Error sizes LineLength Line is longer than 80 characters (found 90). 202
 Error sizes LineLength Line is longer than 80 characters (found 129). 205
 Error misc FinalParameters Parameter version should be final. 207
 Error sizes LineLength Line is longer than 80 characters (found 88). 208
 Error sizes LineLength Line is longer than 80 characters (found 90). 212
 Error sizes LineLength Line is longer than 80 characters (found 129). 215
 Error misc FinalParameters Parameter version should be final. 217
 Error sizes LineLength Line is longer than 80 characters (found 88). 218
 Error sizes LineLength Line is longer than 80 characters (found 82). 222
 Error sizes LineLength Line is longer than 80 characters (found 126). 234
 Error sizes LineLength Line is longer than 80 characters (found 129). 235
 Error sizes LineLength Line is longer than 80 characters (found 86). 236
 Error sizes LineLength Line is longer than 80 characters (found 122). 238
 Error misc FinalParameters Parameter classpath should be final. 238
 Error misc FinalParameters Parameter includeClasspath should be final. 238
 Error sizes LineLength Line is longer than 80 characters (found 87). 240
 Error sizes LineLength Line is longer than 80 characters (found 103). 241
 Error sizes LineLength Line is longer than 80 characters (found 82). 242
 Error sizes LineLength Line is longer than 80 characters (found 98). 243
 Error sizes LineLength Line is longer than 80 characters (found 96). 244
 Error sizes LineLength Line is longer than 80 characters (found 113). 246
 Error sizes LineLength Line is longer than 80 characters (found 98). 247

org/codehaus/gmavenplus/mojo/AbstractGroovySourcesMojo.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - java.util.*. 23
 Error sizes LineLength Line is longer than 80 characters (found 112). 47
 Error sizes LineLength Line is longer than 80 characters (found 103). 53
 Error sizes LineLength Line is longer than 80 characters (found 112). 67
 Error sizes LineLength Line is longer than 80 characters (found 107). 73
 Error sizes LineLength Line is longer than 80 characters (found 82). 77
 Error sizes LineLength Line is longer than 80 characters (found 115). 87
 Error sizes LineLength Line is longer than 80 characters (found 100). 93
 Error sizes LineLength Line is longer than 80 characters (found 95). 101
 Error sizes LineLength Line is longer than 80 characters (found 96). 102
 Error sizes LineLength Line is longer than 80 characters (found 99). 116
 Error sizes LineLength Line is longer than 80 characters (found 104). 117
 Error sizes LineLength Line is longer than 80 characters (found 115). 126
 Error sizes LineLength Line is longer than 80 characters (found 104). 132
 Error sizes LineLength Line is longer than 80 characters (found 95). 140
 Error sizes LineLength Line is longer than 80 characters (found 96). 141
 Error sizes LineLength Line is longer than 80 characters (found 99). 155
 Error sizes LineLength Line is longer than 80 characters (found 104). 156

org/codehaus/gmavenplus/mojo/AbstractGroovyStubSourcesMojo.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 87). 35
 Error misc FinalParameters Parameter outputDirectory should be final. 43

org/codehaus/gmavenplus/mojo/AbstractToolsMojo.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 101). 34
 Error sizes LineLength Line is longer than 80 characters (found 118). 35
 Error design VisibilityModifier Variable 'projectHelper' must be private and have accessor methods. 48
 Error sizes LineLength Line is longer than 80 characters (found 108). 51
 Error sizes LineLength Line is longer than 80 characters (found 91). 54
 Error sizes LineLength Line is longer than 80 characters (found 98). 56
 Error sizes LineLength Line is longer than 80 characters (found 100). 58
 Error sizes LineLength Line is longer than 80 characters (found 99). 60
 Error sizes LineLength Line is longer than 80 characters (found 118). 64
 Error design VisibilityModifier Variable 'properties' must be private and have accessor methods. 71
 Error sizes LineLength Line is longer than 80 characters (found 109). 74
 Error design VisibilityModifier Variable 'allowSystemExits' must be private and have accessor methods. 80
 Error sizes LineLength Line is longer than 80 characters (found 123). 83
 Error design VisibilityModifier Variable 'bindPropertiesToSeparateVariables' must be private and have accessor methods. 88
 Error sizes LineLength Line is longer than 80 characters (found 118). 97
 Error design VisibilityModifier Variable 'includeClasspath' must be private and have accessor methods. 102
 Error sizes LineLength Line is longer than 80 characters (found 90). 105
 Error design VisibilityModifier Variable 'bindAllProjectProperties' must be private and have accessor methods. 110
 Error sizes LineLength Line is longer than 80 characters (found 119). 113
 Error sizes LineLength Line is longer than 80 characters (found 118). 114
 Error design VisibilityModifier Variable 'bindSessionUserOverrideProperties' must be private and have accessor methods. 120
 Error sizes LineLength Line is longer than 80 characters (found 102). 123
 Error sizes LineLength Line is longer than 80 characters (found 117). 124
 Error sizes LineLength Line is longer than 80 characters (found 114). 125
 Error sizes LineLength Line is longer than 80 characters (found 99). 126
 Error design VisibilityModifier Variable 'bindAllSessionUserProperties' must be private and have accessor methods. 132
 Error sizes LineLength Line is longer than 80 characters (found 84). 144
 Error sizes LineLength Line is longer than 80 characters (found 113). 159
 Error sizes LineLength Line is longer than 80 characters (found 102). 161
 Error sizes LineLength Line is longer than 80 characters (found 118). 163
 Error sizes LineLength Line is longer than 80 characters (found 131). 164
 Error sizes LineLength Line is longer than 80 characters (found 101). 167
 Error sizes LineLength Line is longer than 80 characters (found 111). 175
 Error sizes LineLength Line is longer than 80 characters (found 157). 178
 Error sizes LineLength Line is longer than 80 characters (found 106). 186
 Error sizes LineLength Line is longer than 80 characters (found 82). 189
 Error sizes LineLength Line is longer than 80 characters (found 194). 202

org/codehaus/gmavenplus/mojo/AddSourcesMojo.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 87). 31
 Error design VisibilityModifier Variable 'sources' must be private and have accessor methods. 39

org/codehaus/gmavenplus/mojo/AddStubSourcesMojo.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 117). 26
 Error sizes LineLength Line is longer than 80 characters (found 95). 37
 Error design VisibilityModifier Variable 'stubsOutputDirectory' must be private and have accessor methods. 38
 Error sizes LineLength Line is longer than 80 characters (found 114). 45

org/codehaus/gmavenplus/mojo/AddTestSourcesMojo.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 91). 31
 Error design VisibilityModifier Variable 'testSources' must be private and have accessor methods. 39
 Error sizes LineLength Line is longer than 80 characters (found 81). 52
 Error sizes LineLength Line is longer than 80 characters (found 84). 54

org/codehaus/gmavenplus/mojo/AddTestStubSourcesMojo.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 127). 26
 Error sizes LineLength Line is longer than 80 characters (found 95). 37
 Error design VisibilityModifier Variable 'testStubsOutputDirectory' must be private and have accessor methods. 38
 Error design VisibilityModifier Variable 'skipTests' must be private and have accessor methods. 44
 Error sizes LineLength Line is longer than 80 characters (found 132). 52
 Error sizes LineLength Line is longer than 80 characters (found 89). 53

org/codehaus/gmavenplus/mojo/CompileMojo.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 134). 34
 Error sizes LineLength Line is longer than 80 characters (found 137). 39
 Error design VisibilityModifier Variable 'sources' must be private and have accessor methods. 47
 Error design VisibilityModifier Variable 'outputDirectory' must be private and have accessor methods. 53
 Error sizes LineLength Line is longer than 80 characters (found 118). 58
 Error sizes LineLength Line is longer than 80 characters (found 103). 64
 Error sizes LineLength Line is longer than 80 characters (found 104). 68
 Error sizes LineLength Line is longer than 80 characters (found 181). 70
 Error sizes LineLength Line is longer than 80 characters (found 123). 72
 Error sizes LineLength Line is longer than 80 characters (found 117). 74
 Error sizes LineLength Line is longer than 80 characters (found 111). 76
 Error sizes LineLength Line is longer than 80 characters (found 90). 78
 Error sizes LineLength Line is longer than 80 characters (found 108). 80

org/codehaus/gmavenplus/mojo/CompileTestsMojo.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 134). 34
 Error sizes LineLength Line is longer than 80 characters (found 144). 39
 Error design VisibilityModifier Variable 'testSources' must be private and have accessor methods. 47
 Error design VisibilityModifier Variable 'testOutputDirectory' must be private and have accessor methods. 53
 Error design VisibilityModifier Variable 'skipTests' must be private and have accessor methods. 59
 Error sizes LineLength Line is longer than 80 characters (found 118). 64
 Error sizes LineLength Line is longer than 80 characters (found 101). 71
 Error sizes LineLength Line is longer than 80 characters (found 117). 75
 Error sizes LineLength Line is longer than 80 characters (found 185). 77
 Error sizes LineLength Line is longer than 80 characters (found 127). 79
 Error sizes LineLength Line is longer than 80 characters (found 121). 81
 Error sizes LineLength Line is longer than 80 characters (found 115). 83
 Error sizes LineLength Line is longer than 80 characters (found 91). 85
 Error sizes LineLength Line is longer than 80 characters (found 109). 87

org/codehaus/gmavenplus/mojo/ConsoleMojo.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 95). 45
 Error sizes LineLength Line is longer than 80 characters (found 118). 47
 Error sizes LineLength Line is longer than 80 characters (found 92). 56
 Error design VisibilityModifier Variable 'consoleScript' must be private and have accessor methods. 61
 Error sizes LineLength Line is longer than 80 characters (found 118). 66
 Error sizes LineLength Line is longer than 80 characters (found 85). 72
 Error sizes LineLength Line is longer than 80 characters (found 105). 74
 Error sizes LineLength Line is longer than 80 characters (found 87). 76
 Error sizes LineLength Line is longer than 80 characters (found 84). 80
 Error sizes LineLength Line is longer than 80 characters (found 93). 83
 Error sizes LineLength Line is longer than 80 characters (found 87). 98
 Error sizes LineLength Line is longer than 80 characters (found 86). 102
 Error sizes LineLength Line is longer than 80 characters (found 157). 110
 Error misc TodoComment Comment matches to-do format 'TODO:'. 110
 Error sizes LineLength Line is longer than 80 characters (found 199). 119
 Error sizes LineLength Line is longer than 80 characters (found 147). 121
 Error sizes LineLength Line is longer than 80 characters (found 207). 122
 Error sizes LineLength Line is longer than 80 characters (found 131). 124
 Error sizes LineLength Line is longer than 80 characters (found 115). 127
 Error sizes LineLength Line is longer than 80 characters (found 121). 129
 Error sizes LineLength Line is longer than 80 characters (found 228). 136
 Error sizes LineLength Line is longer than 80 characters (found 127). 140
 Error design DesignForExtension Class 'ConsoleMojo' looks like designed for extension (can be subclassed), but the method 'loadScript' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ConsoleMojo' final or making the method 'loadScript' static/final/abstract/empty, or adding allowed annotation for the method. 140
 Error misc FinalParameters Parameter consoleClass should be final. 140
 Error misc FinalParameters Parameter console should be final. 140
 Error sizes LineLength Line is longer than 80 characters (found 91). 142
 Error sizes LineLength Line is longer than 80 characters (found 97). 147
 Error sizes LineLength Line is longer than 80 characters (found 127). 151
 Error sizes LineLength Line is longer than 80 characters (found 123). 154
 Error sizes LineLength Line is longer than 80 characters (found 131). 165
 Error sizes LineLength Line is longer than 80 characters (found 115). 166
 Error sizes LineLength Line is longer than 80 characters (found 118). 167
 Error sizes LineLength Line is longer than 80 characters (found 174). 169
 Error sizes LineLength Line is longer than 80 characters (found 97). 172
 Error sizes LineLength Line is longer than 80 characters (found 136). 181
 Error sizes LineLength Line is longer than 80 characters (found 138). 185
 Error sizes LineLength Line is longer than 80 characters (found 109). 194
 Error sizes LineLength Line is longer than 80 characters (found 113). 195
 Error sizes LineLength Line is longer than 80 characters (found 129). 196
 Error sizes LineLength Line is longer than 80 characters (found 178). 198
 Error misc FinalParameters Parameter consoleClass should be final. 198
 Error misc FinalParameters Parameter bindingClass should be final. 198
 Error misc FinalParameters Parameter console should be final. 198
 Error sizes LineLength Line is longer than 80 characters (found 90). 200
 Error sizes LineLength Line is longer than 80 characters (found 97). 201
 Error sizes LineLength Line is longer than 80 characters (found 93). 202
 Error sizes LineLength Line is longer than 80 characters (found 113). 205
 Error sizes LineLength Line is longer than 80 characters (found 102). 207
 Error sizes LineLength Line is longer than 80 characters (found 118). 209
 Error sizes LineLength Line is longer than 80 characters (found 131). 210
 Error sizes LineLength Line is longer than 80 characters (found 101). 213
 Error sizes LineLength Line is longer than 80 characters (found 130). 218
 Error sizes LineLength Line is longer than 80 characters (found 137). 229
 Error sizes LineLength Line is longer than 80 characters (found 111). 245
 Error sizes LineLength Line is longer than 80 characters (found 90). 248

org/codehaus/gmavenplus/mojo/ExecuteMojo.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 82). 46
 Error sizes LineLength Line is longer than 80 characters (found 95). 48
 Error sizes LineLength Line is longer than 80 characters (found 95). 54
 Error sizes LineLength Line is longer than 80 characters (found 84). 60
 Error sizes LineLength Line is longer than 80 characters (found 101). 68
 Error design VisibilityModifier Variable 'scripts' must be private and have accessor methods. 72
 Error design VisibilityModifier Variable 'continueExecuting' must be private and have accessor methods. 78
 Error design VisibilityModifier Variable 'sourceEncoding' must be private and have accessor methods. 86
 Error design VisibilityModifier Variable 'skipScriptExecution' must be private and have accessor methods. 94
 Error sizes LineLength Line is longer than 80 characters (found 118). 99
 Error sizes LineLength Line is longer than 80 characters (found 118). 109
 Error sizes LineLength Line is longer than 80 characters (found 103). 113
 Error sizes LineLength Line is longer than 80 characters (found 85). 123
 Error sizes LineLength Line is longer than 80 characters (found 105). 125
 Error sizes LineLength Line is longer than 80 characters (found 87). 127
 Error sizes LineLength Line is longer than 80 characters (found 84). 131
 Error sizes LineLength Line is longer than 80 characters (found 93). 134
 Error sizes LineLength Line is longer than 80 characters (found 94). 147
 Error sizes LineLength Line is longer than 80 characters (found 199). 155
 Error sizes LineLength Line is longer than 80 characters (found 127). 157
 Error sizes LineLength Line is longer than 80 characters (found 121). 159
 Error sizes LineLength Line is longer than 80 characters (found 115). 161
 Error sizes LineLength Line is longer than 80 characters (found 228). 168
 Error sizes LineLength Line is longer than 80 characters (found 120). 177
 Error sizes LineLength Line is longer than 80 characters (found 104). 178
 Error sizes LineLength Line is longer than 80 characters (found 107). 179
 Error sizes LineLength Line is longer than 80 characters (found 100). 180
 Error sizes LineLength Line is longer than 80 characters (found 171). 182
 Error sizes LineLength Line is longer than 80 characters (found 126). 185
 Error sizes LineLength Line is longer than 80 characters (found 106). 186
 Error sizes LineLength Line is longer than 80 characters (found 139). 187
 Error sizes LineLength Line is longer than 80 characters (found 175). 188
 Error sizes LineLength Line is longer than 80 characters (found 124). 190
 Error sizes LineLength Line is longer than 80 characters (found 101). 193
 Error sizes LineLength Line is longer than 80 characters (found 136). 202
 Error sizes LineLength Line is longer than 80 characters (found 117). 214
 Error sizes LineLength Line is longer than 80 characters (found 101). 215
 Error sizes LineLength Line is longer than 80 characters (found 140). 216
 Error sizes LineLength Line is longer than 80 characters (found 169). 218
 Error misc TodoComment Comment matches to-do format 'TODO:'. 222
 Error sizes LineLength Line is longer than 80 characters (found 107). 230
 Error sizes LineLength Line is longer than 80 characters (found 99). 231
 Error sizes LineLength Line is longer than 80 characters (found 81). 234
 Error sizes LineLength Line is longer than 80 characters (found 103). 235
 Error sizes LineLength Line is longer than 80 characters (found 148). 241
 Error sizes LineLength Line is longer than 80 characters (found 125). 243
 Error sizes LineLength Line is longer than 80 characters (found 83). 256
 Error sizes LineLength Line is longer than 80 characters (found 117). 257
 Error sizes LineLength Line is longer than 80 characters (found 101). 258
 Error sizes LineLength Line is longer than 80 characters (found 167). 260
 Error misc FinalParameters Parameter groovyShellClass should be final. 260
 Error misc FinalParameters Parameter shell should be final. 260
 Error misc FinalParameters Parameter script should be final. 260
 Error sizes LineLength Line is longer than 80 characters (found 98). 264
 Error sizes LineLength Line is longer than 80 characters (found 105). 268
 Error sizes LineLength Line is longer than 80 characters (found 89). 270
 Error sizes LineLength Line is longer than 80 characters (found 103). 277
 Error sizes LineLength Line is longer than 80 characters (found 116). 281

org/codehaus/gmavenplus/mojo/GenerateStubsMojo.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 118). 33
 Error sizes LineLength Line is longer than 80 characters (found 152). 39
 Error design VisibilityModifier Variable 'sources' must be private and have accessor methods. 47
 Error sizes LineLength Line is longer than 80 characters (found 95). 52
 Error design VisibilityModifier Variable 'stubsOutputDirectory' must be private and have accessor methods. 53
 Error sizes LineLength Line is longer than 80 characters (found 118). 58
 Error sizes LineLength Line is longer than 80 characters (found 103). 66
 Error sizes LineLength Line is longer than 80 characters (found 116). 71
 Error sizes LineLength Line is longer than 80 characters (found 85). 75
 Error sizes LineLength Line is longer than 80 characters (found 81). 76
 Error sizes LineLength Line is longer than 80 characters (found 181). 78
 Error sizes LineLength Line is longer than 80 characters (found 123). 80
 Error sizes LineLength Line is longer than 80 characters (found 117). 82
 Error sizes LineLength Line is longer than 80 characters (found 111). 84
 Error sizes LineLength Line is longer than 80 characters (found 90). 86
 Error sizes LineLength Line is longer than 80 characters (found 108). 88

org/codehaus/gmavenplus/mojo/GenerateTestStubsMojo.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 123). 33
 Error sizes LineLength Line is longer than 80 characters (found 158). 39
 Error design VisibilityModifier Variable 'testSources' must be private and have accessor methods. 47
 Error sizes LineLength Line is longer than 80 characters (found 95). 52
 Error design VisibilityModifier Variable 'testStubsOutputDirectory' must be private and have accessor methods. 53
 Error design VisibilityModifier Variable 'skipTests' must be private and have accessor methods. 59
 Error sizes LineLength Line is longer than 80 characters (found 118). 64
 Error sizes LineLength Line is longer than 80 characters (found 101). 72
 Error sizes LineLength Line is longer than 80 characters (found 129). 77
 Error sizes LineLength Line is longer than 80 characters (found 89). 81
 Error sizes LineLength Line is longer than 80 characters (found 93). 82
 Error sizes LineLength Line is longer than 80 characters (found 185). 84
 Error sizes LineLength Line is longer than 80 characters (found 127). 86
 Error sizes LineLength Line is longer than 80 characters (found 121). 88
 Error sizes LineLength Line is longer than 80 characters (found 115). 90
 Error sizes LineLength Line is longer than 80 characters (found 91). 92
 Error sizes LineLength Line is longer than 80 characters (found 109). 94

org/codehaus/gmavenplus/mojo/GroovyDocJarMojo.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 111). 39
 Error sizes LineLength Line is longer than 80 characters (found 143). 45
 Error sizes LineLength Line is longer than 80 characters (found 116). 49
 Error design VisibilityModifier Variable 'finalName' must be private and have accessor methods. 53
 Error design VisibilityModifier Variable 'jarOutputDirectory' must be private and have accessor methods. 59
 Error design VisibilityModifier Variable 'jarArchiver' must be private and have accessor methods. 65
 Error sizes LineLength Line is longer than 80 characters (found 107). 69
 Error sizes LineLength Line is longer than 80 characters (found 88). 72
 Error design VisibilityModifier Variable 'archive' must be private and have accessor methods. 72
 Error design VisibilityModifier Variable 'attach' must be private and have accessor methods. 78
 Error sizes LineLength Line is longer than 80 characters (found 120). 90
 Error design VisibilityModifier Variable 'defaultManifestFile' must be private and have accessor methods. 91
 Error sizes LineLength Line is longer than 80 characters (found 95). 94
 Error design VisibilityModifier Variable 'invokeGroovyDoc' must be private and have accessor methods. 117
 Error sizes LineLength Line is longer than 80 characters (found 111). 130
 Error sizes LineLength Line is longer than 80 characters (found 92). 133
 Error sizes LineLength Line is longer than 80 characters (found 86). 135
 Error sizes LineLength Line is longer than 80 characters (found 99). 138
 Error sizes LineLength Line is longer than 80 characters (found 93). 140
 Error sizes LineLength Line is longer than 80 characters (found 98). 142
 Error javadoc JavadocStyle First sentence should end with a period. 146
 Error sizes LineLength Line is longer than 80 characters (found 83). 149
 Error sizes LineLength Line is longer than 80 characters (found 106). 152
 Error sizes LineLength Line is longer than 80 characters (found 109). 153
 Error sizes LineLength Line is longer than 80 characters (found 115). 155
 Error misc FinalParameters Parameter groovydocFiles should be final. 155
 Error misc FinalParameters Parameter jarFileName should be final. 155
 Error sizes LineLength Line is longer than 80 characters (found 84). 160
 Error sizes LineLength Line is longer than 80 characters (found 86). 169
 Error sizes LineLength Line is longer than 80 characters (found 106). 174
 Error sizes LineLength Line is longer than 80 characters (found 112). 175
 Error sizes LineLength Line is longer than 80 characters (found 83). 182
 Error sizes LineLength Line is longer than 80 characters (found 103). 184

org/codehaus/gmavenplus/mojo/GroovyDocMojo.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 100). 37
 Error design VisibilityModifier Variable 'sources' must be private and have accessor methods. 45
 Error design VisibilityModifier Variable 'groovyDocOutputDirectory' must be private and have accessor methods. 51
 Error design VisibilityModifier Variable 'groovyDocJavaSources' must be private and have accessor methods. 59
 Error sizes LineLength Line is longer than 80 characters (found 118). 64
 Error sizes LineLength Line is longer than 80 characters (found 103). 70
 Error sizes LineLength Line is longer than 80 characters (found 143). 74
 Error sizes LineLength Line is longer than 80 characters (found 181). 76
 Error sizes LineLength Line is longer than 80 characters (found 123). 78
 Error sizes LineLength Line is longer than 80 characters (found 117). 80
 Error sizes LineLength Line is longer than 80 characters (found 111). 82
 Error sizes LineLength Line is longer than 80 characters (found 90). 84
 Error sizes LineLength Line is longer than 80 characters (found 108). 86

org/codehaus/gmavenplus/mojo/GroovyDocTestsJarMojo.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 116). 39
 Error sizes LineLength Line is longer than 80 characters (found 145). 45
 Error sizes LineLength Line is longer than 80 characters (found 121). 49
 Error design VisibilityModifier Variable 'finalName' must be private and have accessor methods. 53
 Error design VisibilityModifier Variable 'jarOutputDirectory' must be private and have accessor methods. 59
 Error design VisibilityModifier Variable 'jarArchiver' must be private and have accessor methods. 65
 Error sizes LineLength Line is longer than 80 characters (found 107). 69
 Error sizes LineLength Line is longer than 80 characters (found 88). 72
 Error design VisibilityModifier Variable 'archive' must be private and have accessor methods. 72
 Error design VisibilityModifier Variable 'attach' must be private and have accessor methods. 78
 Error sizes LineLength Line is longer than 80 characters (found 120). 90
 Error design VisibilityModifier Variable 'defaultManifestFile' must be private and have accessor methods. 91
 Error sizes LineLength Line is longer than 80 characters (found 95). 94
 Error sizes LineLength Line is longer than 80 characters (found 82). 114
 Error design VisibilityModifier Variable 'invokeGroovyDoc' must be private and have accessor methods. 117
 Error sizes LineLength Line is longer than 80 characters (found 119). 130
 Error sizes LineLength Line is longer than 80 characters (found 100). 133
 Error sizes LineLength Line is longer than 80 characters (found 91). 135
 Error sizes LineLength Line is longer than 80 characters (found 99). 138
 Error sizes LineLength Line is longer than 80 characters (found 93). 140
 Error sizes LineLength Line is longer than 80 characters (found 98). 142
 Error javadoc JavadocStyle First sentence should end with a period. 146
 Error sizes LineLength Line is longer than 80 characters (found 83). 149
 Error sizes LineLength Line is longer than 80 characters (found 106). 152
 Error sizes LineLength Line is longer than 80 characters (found 109). 153
 Error sizes LineLength Line is longer than 80 characters (found 115). 155
 Error misc FinalParameters Parameter groovydocFiles should be final. 155
 Error misc FinalParameters Parameter jarFileName should be final. 155
 Error sizes LineLength Line is longer than 80 characters (found 84). 160
 Error sizes LineLength Line is longer than 80 characters (found 86). 169
 Error sizes LineLength Line is longer than 80 characters (found 106). 174
 Error sizes LineLength Line is longer than 80 characters (found 112). 175
 Error sizes LineLength Line is longer than 80 characters (found 83). 182
 Error sizes LineLength Line is longer than 80 characters (found 103). 184

org/codehaus/gmavenplus/mojo/GroovyDocTestsMojo.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 102). 37
 Error design VisibilityModifier Variable 'testSources' must be private and have accessor methods. 45
 Error design VisibilityModifier Variable 'testGroovyDocOutputDirectory' must be private and have accessor methods. 51
 Error design VisibilityModifier Variable 'testGroovyDocJavaSources' must be private and have accessor methods. 59
 Error sizes LineLength Line is longer than 80 characters (found 118). 64
 Error sizes LineLength Line is longer than 80 characters (found 100). 70
 Error sizes LineLength Line is longer than 80 characters (found 156). 74
 Error sizes LineLength Line is longer than 80 characters (found 181). 76
 Error sizes LineLength Line is longer than 80 characters (found 123). 78
 Error sizes LineLength Line is longer than 80 characters (found 117). 80
 Error sizes LineLength Line is longer than 80 characters (found 111). 82
 Error sizes LineLength Line is longer than 80 characters (found 87). 84
 Error sizes LineLength Line is longer than 80 characters (found 105). 86

org/codehaus/gmavenplus/mojo/RemoveStubsMojo.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 85). 32
 Error sizes LineLength Line is longer than 80 characters (found 95). 38
 Error design VisibilityModifier Variable 'stubsOutputDirectory' must be private and have accessor methods. 39
 Error sizes LineLength Line is longer than 80 characters (found 87). 46

org/codehaus/gmavenplus/mojo/RemoveTestStubsMojo.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 94). 32
 Error sizes LineLength Line is longer than 80 characters (found 95). 38
 Error design VisibilityModifier Variable 'testStubsOutputDirectory' must be private and have accessor methods. 39
 Error design VisibilityModifier Variable 'skipTests' must be private and have accessor methods. 45
 Error sizes LineLength Line is longer than 80 characters (found 99). 53

org/codehaus/gmavenplus/mojo/ShellMojo.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 101). 44
 Error sizes LineLength Line is longer than 80 characters (found 89). 55
 Error design VisibilityModifier Variable 'verbosity' must be private and have accessor methods. 67
 Error sizes LineLength Line is longer than 80 characters (found 118). 72
 Error sizes LineLength Line is longer than 80 characters (found 85). 77
 Error sizes LineLength Line is longer than 80 characters (found 105). 79
 Error sizes LineLength Line is longer than 80 characters (found 87). 81
 Error sizes LineLength Line is longer than 80 characters (found 84). 85
 Error sizes LineLength Line is longer than 80 characters (found 93). 88
 Error sizes LineLength Line is longer than 80 characters (found 182). 101
 Error sizes LineLength Line is longer than 80 characters (found 86). 102
 Error sizes LineLength Line is longer than 80 characters (found 96). 103
 Error sizes LineLength Line is longer than 80 characters (found 113). 104
 Error sizes LineLength Line is longer than 80 characters (found 109). 105
 Error sizes LineLength Line is longer than 80 characters (found 106). 108
 Error sizes LineLength Line is longer than 80 characters (found 96). 111
 Error sizes LineLength Line is longer than 80 characters (found 199). 113
 Error sizes LineLength Line is longer than 80 characters (found 151). 115
 Error sizes LineLength Line is longer than 80 characters (found 281). 116
 Error sizes LineLength Line is longer than 80 characters (found 131). 118
 Error sizes LineLength Line is longer than 80 characters (found 115). 121
 Error sizes LineLength Line is longer than 80 characters (found 121). 123
 Error sizes LineLength Line is longer than 80 characters (found 224). 130
 Error sizes LineLength Line is longer than 80 characters (found 106). 143
 Error sizes LineLength Line is longer than 80 characters (found 103). 144
 Error sizes LineLength Line is longer than 80 characters (found 119). 145
 Error sizes LineLength Line is longer than 80 characters (found 253). 147
 Error sizes LineLength Line is longer than 80 characters (found 97). 150
 Error sizes LineLength Line is longer than 80 characters (found 136). 159
 Error sizes LineLength Line is longer than 80 characters (found 162). 163
 Error sizes LineLength Line is longer than 80 characters (found 149). 166

org/codehaus/gmavenplus/util/ClassWrangler.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 126). 64
 Error sizes LineLength Line is longer than 80 characters (found 94). 67
 Error sizes LineLength Line is longer than 80 characters (found 86). 69
 Error sizes LineLength Line is longer than 80 characters (found 138). 71
 Error sizes LineLength Line is longer than 80 characters (found 82). 86
 Error sizes LineLength Line is longer than 80 characters (found 102). 87
 Error sizes LineLength Line is longer than 80 characters (found 128). 91
 Error sizes LineLength Line is longer than 80 characters (found 94). 95
 Error sizes LineLength Line is longer than 80 characters (found 98). 97
 Error sizes LineLength Line is longer than 80 characters (found 104). 99
 Error sizes LineLength Line is longer than 80 characters (found 107). 100
 Error sizes LineLength Line is longer than 80 characters (found 132). 104
 Error sizes LineLength Line is longer than 80 characters (found 104). 110
 Error sizes LineLength Line is longer than 80 characters (found 105). 112
 Error sizes LineLength Line is longer than 80 characters (found 103). 113
 Error sizes LineLength Line is longer than 80 characters (found 81). 114
 Error sizes LineLength Line is longer than 80 characters (found 110). 117
 Error coding MagicNumber '9' is a magic number. 120
 Error sizes LineLength Line is longer than 80 characters (found 121). 127
 Error coding MagicNumber '4' is a magic number. 127
 Error sizes LineLength Line is longer than 80 characters (found 114). 144
 Error sizes LineLength Line is longer than 80 characters (found 88). 149
 Error sizes LineLength Line is longer than 80 characters (found 84). 152
 Error sizes LineLength Line is longer than 80 characters (found 127). 153
 Error sizes LineLength Line is longer than 80 characters (found 92). 155
 Error misc FinalParameters Parameter detectedVersion should be final. 155
 Error misc FinalParameters Parameter compareToVersion should be final. 155
 Error sizes LineLength Line is longer than 80 characters (found 84). 163
 Error sizes LineLength Line is longer than 80 characters (found 118). 164
 Error sizes LineLength Line is longer than 80 characters (found 87). 166
 Error misc FinalParameters Parameter detectedVersion should be final. 166
 Error misc FinalParameters Parameter compareToVersion should be final. 166
 Error sizes LineLength Line is longer than 80 characters (found 90). 171
 Error sizes LineLength Line is longer than 80 characters (found 84). 174
 Error sizes LineLength Line is longer than 80 characters (found 129). 175
 Error sizes LineLength Line is longer than 80 characters (found 94). 177
 Error misc FinalParameters Parameter detectedVersion should be final. 177
 Error misc FinalParameters Parameter compareToVersion should be final. 177
 Error sizes LineLength Line is longer than 80 characters (found 90). 182
 Error sizes LineLength Line is longer than 80 characters (found 84). 185
 Error sizes LineLength Line is longer than 80 characters (found 129). 186
 Error sizes LineLength Line is longer than 80 characters (found 94). 188
 Error misc FinalParameters Parameter detectedVersion should be final. 188
 Error misc FinalParameters Parameter compareToVersion should be final. 188
 Error sizes LineLength Line is longer than 80 characters (found 82). 193
 Error sizes LineLength Line is longer than 80 characters (found 82). 219
 Error sizes LineLength Line is longer than 80 characters (found 91). 222
 Error sizes LineLength Line is longer than 80 characters (found 95). 230
 Error sizes LineLength Line is longer than 80 characters (found 84). 232
 Error sizes LineLength Line is longer than 80 characters (found 98). 248
 Error sizes LineLength Line is longer than 80 characters (found 86). 249
 Error sizes LineLength Line is longer than 80 characters (found 86). 251
 Error sizes LineLength Line is longer than 80 characters (found 133). 253
 Error coding HiddenField 'classLoader' hides a field. 253
 Error sizes LineLength Line is longer than 80 characters (found 114). 279
 Error sizes LineLength Line is longer than 80 characters (found 84). 287
 Error sizes LineLength Line is longer than 80 characters (found 149). 291
 Error sizes LineLength Line is longer than 80 characters (found 92). 293
 Error sizes LineLength Line is longer than 80 characters (found 81). 295

org/codehaus/gmavenplus/util/FileUtils.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - java.io.*. 19
 Error sizes LineLength Line is longer than 80 characters (found 93). 23
 Error design FinalClass Class FileUtils should be declared as final. 28
 Error sizes LineLength Line is longer than 80 characters (found 123). 34
 Error sizes LineLength Line is longer than 80 characters (found 123). 46

org/codehaus/gmavenplus/util/NoExitSecurityManager.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 93). 45

org/codehaus/gmavenplus/util/ReflectionUtils.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 195). 30
 Error design FinalClass Class ReflectionUtils should be declared as final. 41
 Error sizes LineLength Line is longer than 80 characters (found 101). 47
 Error sizes LineLength Line is longer than 80 characters (found 111). 51
 Error sizes LineLength Line is longer than 80 characters (found 102). 54
 Error sizes LineLength Line is longer than 80 characters (found 129). 60
 Error sizes LineLength Line is longer than 80 characters (found 103). 62
 Error sizes LineLength Line is longer than 80 characters (found 204). 68
 Error sizes LineLength Line is longer than 80 characters (found 137). 72
 Error sizes LineLength Line is longer than 80 characters (found 89). 76
 Error sizes LineLength Line is longer than 80 characters (found 89). 77
 Error sizes LineLength Line is longer than 80 characters (found 97). 80
 Error sizes LineLength Line is longer than 80 characters (found 102). 85
 Error sizes LineLength Line is longer than 80 characters (found 119). 91
 Error sizes LineLength Line is longer than 80 characters (found 142). 97
 Error sizes LineLength Line is longer than 80 characters (found 105). 101
 Error sizes LineLength Line is longer than 80 characters (found 108). 110
 Error sizes LineLength Line is longer than 80 characters (found 117). 119
 Error sizes LineLength Line is longer than 80 characters (found 133). 121
 Error sizes LineLength Line is longer than 80 characters (found 212). 127
 Error sizes LineLength Line is longer than 80 characters (found 85). 137
 Error sizes LineLength Line is longer than 80 characters (found 97). 144
 Error sizes LineLength Line is longer than 80 characters (found 122). 151
 Error sizes LineLength Line is longer than 80 characters (found 152). 152
 Error sizes LineLength Line is longer than 80 characters (found 115). 157
 Error sizes LineLength Line is longer than 80 characters (found 105). 159
 Error sizes LineLength Line is longer than 80 characters (found 122). 165
 Error sizes LineLength Line is longer than 80 characters (found 152). 166
 Error sizes LineLength Line is longer than 80 characters (found 115). 170
 Error sizes LineLength Line is longer than 80 characters (found 90). 172
 Error sizes LineLength Line is longer than 80 characters (found 142). 185
 Error sizes LineLength Line is longer than 80 characters (found 93). 186
 Error sizes LineLength Line is longer than 80 characters (found 86). 187
 Error sizes LineLength Line is longer than 80 characters (found 181). 189
 Error sizes LineLength Line is longer than 80 characters (found 106). 198
 Error sizes LineLength Line is longer than 80 characters (found 88). 199
 Error sizes LineLength Line is longer than 80 characters (found 137). 205
 Error sizes LineLength Line is longer than 80 characters (found 93). 206
 Error sizes LineLength Line is longer than 80 characters (found 160). 208
 Error sizes LineLength Line is longer than 80 characters (found 137). 225
 Error sizes LineLength Line is longer than 80 characters (found 93). 226
 Error sizes LineLength Line is longer than 80 characters (found 145). 228
 Error sizes LineLength Line is longer than 80 characters (found 162). 240
 Error sizes LineLength Line is longer than 80 characters (found 166). 241
 Error misc FinalParameters Parameter clazz should be final. 247
 Error sizes LineLength Line is longer than 80 characters (found 84). 253
 Error sizes LineLength Line is longer than 80 characters (found 81). 265
 Error misc FinalParameters Parameter clazz should be final. 265