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
40 0 0 1470

Files

File  I  W  E
org/codehaus/gmavenplus/gmavenplus_plugin/HelpMojo.java 0 0 487
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 141
org/codehaus/gmavenplus/mojo/AbstractGenerateStubsMojo.java 0 0 111
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 59
org/codehaus/gmavenplus/mojo/ExecuteMojo.java 0 0 62
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 35
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
blocks LeftCurly 62  Error
RightCurly 9  Error
coding HiddenField 11  Error
MagicNumber 12  Error
design DesignForExtension 4  Error
FinalClass 2  Error
VisibilityModifier 103  Error
imports AvoidStarImport 2  Error
javadoc JavadocPackage 1  Error
JavadocStyle 2  Error
JavadocVariable 5  Error
MissingJavadocMethod 3  Error
misc FinalParameters 63  Error
TodoComment 2  Error
sizes LineLength
  • fileExtensions: "java"
847  Error
whitespace ParenPad 342  Error

Details

org/codehaus/gmavenplus/gmavenplus_plugin/HelpMojo.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file. 1
 Error sizes LineLength Line is longer than 80 characters (found 104). 24
 Error whitespace ParenPad '(' is followed by whitespace. 27
 Error whitespace ParenPad ')' is preceded with whitespace. 27
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 30
 Error whitespace ParenPad '(' is followed by whitespace. 35
 Error whitespace ParenPad ')' is preceded with whitespace. 35
 Error sizes LineLength Line is longer than 80 characters (found 96). 39
 Error whitespace ParenPad '(' is followed by whitespace. 42
 Error whitespace ParenPad ')' is preceded with whitespace. 42
 Error whitespace ParenPad '(' is followed by whitespace. 49
 Error whitespace ParenPad ')' is preceded with whitespace. 49
 Error whitespace ParenPad '(' is followed by whitespace. 56
 Error whitespace ParenPad ')' is preceded with whitespace. 56
 Error javadoc JavadocVariable Missing a Javadoc comment. 60
 Error sizes LineLength Line is longer than 80 characters (found 96). 61
 Error javadoc JavadocVariable Missing a Javadoc comment. 63
 Error blocks LeftCurly '{' at column 5 should be on the previous line. 67
 Error whitespace ParenPad '(' is followed by whitespace. 68
 Error whitespace ParenPad ')' is preceded with whitespace. 68
 Error sizes LineLength Line is longer than 80 characters (found 83). 69
 Error whitespace ParenPad '(' is followed by whitespace. 69
 Error whitespace ParenPad '(' is followed by whitespace. 69
 Error whitespace ParenPad ')' is preceded with whitespace. 69
 Error whitespace ParenPad ')' is preceded with whitespace. 69
 Error blocks LeftCurly '{' at column 9 should be on the previous line. 70
 Error whitespace ParenPad '(' is followed by whitespace. 71
 Error whitespace ParenPad ')' is preceded with whitespace. 71
 Error blocks LeftCurly '{' at column 13 should be on the previous line. 72
 Error sizes LineLength Line is longer than 80 characters (found 110). 73
 Error whitespace ParenPad '(' is followed by whitespace. 73
 Error whitespace ParenPad ')' is preceded with whitespace. 73
 Error sizes LineLength Line is longer than 80 characters (found 84). 75
 Error whitespace ParenPad '(' is followed by whitespace. 77
 Error whitespace ParenPad ')' is preceded with whitespace. 77
 Error blocks RightCurly '}' at column 9 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else, do/while or try/catch/finally). 78
 Error whitespace ParenPad '(' is followed by whitespace. 79
 Error whitespace ParenPad ')' is preceded with whitespace. 79
 Error blocks LeftCurly '{' at column 9 should be on the previous line. 80
 Error whitespace ParenPad '(' is followed by whitespace. 81
 Error whitespace ParenPad ')' is preceded with whitespace. 81
 Error blocks RightCurly '}' at column 9 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else, do/while or try/catch/finally). 82
 Error whitespace ParenPad '(' is followed by whitespace. 83
 Error whitespace ParenPad ')' is preceded with whitespace. 83
 Error blocks LeftCurly '{' at column 9 should be on the previous line. 84
 Error whitespace ParenPad '(' is followed by whitespace. 85
 Error whitespace ParenPad ')' is preceded with whitespace. 85
 Error blocks RightCurly '}' at column 9 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else, do/while or try/catch/finally). 86
 Error whitespace ParenPad '(' is followed by whitespace. 87
 Error whitespace ParenPad ')' is preceded with whitespace. 87
 Error blocks LeftCurly '{' at column 9 should be on the previous line. 88
 Error whitespace ParenPad '(' is followed by whitespace. 89
 Error whitespace ParenPad ')' is preceded with whitespace. 89
 Error blocks LeftCurly '{' at column 5 should be on the previous line. 99
 Error whitespace ParenPad '(' is followed by whitespace. 100
 Error whitespace ParenPad ')' is preceded with whitespace. 100
 Error blocks LeftCurly '{' at column 9 should be on the previous line. 101
 Error sizes LineLength Line is longer than 80 characters (found 101). 102
 Error whitespace ParenPad '(' is followed by whitespace. 102
 Error whitespace ParenPad ')' is preceded with whitespace. 102
 Error whitespace ParenPad '(' is followed by whitespace. 105
 Error whitespace ParenPad ')' is preceded with whitespace. 105
 Error blocks LeftCurly '{' at column 9 should be on the previous line. 106
 Error sizes LineLength Line is longer than 80 characters (found 100). 107
 Error whitespace ParenPad '(' is followed by whitespace. 107
 Error whitespace ParenPad ')' is preceded with whitespace. 107
 Error whitespace ParenPad '(' is followed by whitespace. 114
 Error whitespace ParenPad ')' is preceded with whitespace. 114
 Error whitespace ParenPad '(' is followed by whitespace. 117
 Error whitespace ParenPad ')' is preceded with whitespace. 117
 Error whitespace ParenPad '(' is followed by whitespace. 118
 Error whitespace ParenPad ')' is preceded with whitespace. 118
 Error sizes LineLength Line is longer than 80 characters (found 107). 119
 Error whitespace ParenPad '(' is followed by whitespace. 119
 Error whitespace ParenPad ')' is preceded with whitespace. 119
 Error whitespace ParenPad '(' is followed by whitespace. 119
 Error whitespace ParenPad ')' is preceded with whitespace. 119
 Error whitespace ParenPad '(' is followed by whitespace. 120
 Error whitespace ParenPad '(' is followed by whitespace. 120
 Error whitespace ParenPad ')' is preceded with whitespace. 120
 Error whitespace ParenPad '(' is followed by whitespace. 120
 Error whitespace ParenPad ')' is preceded with whitespace. 120
 Error whitespace ParenPad ')' is preceded with whitespace. 120
 Error blocks LeftCurly '{' at column 9 should be on the previous line. 121
 Error whitespace ParenPad '(' is followed by whitespace. 122
 Error whitespace ParenPad ')' is preceded with whitespace. 122
 Error blocks RightCurly '}' at column 9 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else, do/while or try/catch/finally). 123
 Error blocks LeftCurly '{' at column 9 should be on the previous line. 125
 Error whitespace ParenPad '(' is followed by whitespace. 126
 Error whitespace ParenPad '(' is followed by whitespace. 126
 Error whitespace ParenPad ')' is preceded with whitespace. 126
 Error whitespace ParenPad ')' is preceded with whitespace. 126
 Error blocks LeftCurly '{' at column 13 should be on the previous line. 127
 Error whitespace ParenPad '(' is followed by whitespace. 128
 Error whitespace ParenPad ')' is preceded with whitespace. 128
 Error blocks RightCurly '}' at column 13 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else, do/while or try/catch/finally). 129
 Error blocks LeftCurly '{' at column 13 should be on the previous line. 131
 Error whitespace ParenPad '(' is followed by whitespace. 132
 Error whitespace ParenPad ')' is preceded with whitespace. 132
 Error whitespace ParenPad '(' is followed by whitespace. 135
 Error whitespace ParenPad '(' is followed by whitespace. 135
 Error whitespace ParenPad ')' is preceded with whitespace. 135
 Error whitespace ParenPad ')' is preceded with whitespace. 135
 Error whitespace ParenPad '(' is followed by whitespace. 136
 Error whitespace ParenPad ')' is preceded with whitespace. 136
 Error whitespace ParenPad '(' is followed by whitespace. 139
 Error whitespace ParenPad ')' is preceded with whitespace. 139
 Error whitespace ParenPad '(' is followed by whitespace. 141
 Error whitespace ParenPad ')' is preceded with whitespace. 141
 Error whitespace ParenPad '(' is followed by whitespace. 143
 Error whitespace ParenPad ')' is preceded with whitespace. 143
 Error whitespace ParenPad '(' is followed by whitespace. 145
 Error whitespace ParenPad ')' is preceded with whitespace. 145
 Error blocks LeftCurly '{' at column 9 should be on the previous line. 146
 Error sizes LineLength Line is longer than 80 characters (found 109). 147
 Error whitespace ParenPad '(' is followed by whitespace. 147
 Error whitespace ParenPad '(' is followed by whitespace. 147
 Error whitespace ParenPad ')' is preceded with whitespace. 147
 Error whitespace ParenPad ')' is preceded with whitespace. 147
 Error whitespace ParenPad '(' is followed by whitespace. 148
 Error whitespace ParenPad ')' is preceded with whitespace. 148
 Error whitespace ParenPad '(' is followed by whitespace. 151
 Error whitespace ParenPad ')' is preceded with whitespace. 151
 Error blocks LeftCurly '{' at column 9 should be on the previous line. 152
 Error whitespace ParenPad '(' is followed by whitespace. 153
 Error whitespace ParenPad ')' is preceded with whitespace. 153
 Error whitespace ParenPad '(' is followed by whitespace. 156
 Error whitespace ParenPad ')' is preceded with whitespace. 156
 Error blocks LeftCurly '{' at column 9 should be on the previous line. 157
 Error whitespace ParenPad '(' is followed by whitespace. 158
 Error whitespace ParenPad ')' is preceded with whitespace. 158
 Error whitespace ParenPad '(' is followed by whitespace. 163
 Error misc FinalParameters Parameter string should be final. 163
 Error whitespace ParenPad ')' is preceded with whitespace. 163
 Error blocks LeftCurly '{' at column 5 should be on the previous line. 164
 Error whitespace ParenPad '(' is followed by whitespace. 168
 Error misc FinalParameters Parameter node should be final. 168
 Error misc FinalParameters Parameter elementName should be final. 168
 Error whitespace ParenPad ')' is preceded with whitespace. 168
 Error blocks LeftCurly '{' at column 5 should be on the previous line. 170
 Error whitespace ParenPad '(' is followed by whitespace. 171
 Error whitespace ParenPad ')' is preceded with whitespace. 171
 Error whitespace ParenPad '(' is followed by whitespace. 174
 Error misc FinalParameters Parameter node should be final. 174
 Error misc FinalParameters Parameter elementName should be final. 174
 Error whitespace ParenPad ')' is preceded with whitespace. 174
 Error blocks LeftCurly '{' at column 5 should be on the previous line. 176
 Error whitespace ParenPad '(' is followed by whitespace. 177
 Error whitespace ParenPad ')' is preceded with whitespace. 177
 Error whitespace ParenPad '(' is followed by whitespace. 178
 Error whitespace ParenPad ')' is preceded with whitespace. 178
 Error blocks LeftCurly '{' at column 9 should be on the previous line. 179
 Error sizes LineLength Line is longer than 80 characters (found 104). 180
 Error whitespace ParenPad '(' is followed by whitespace. 180
 Error whitespace ParenPad ')' is preceded with whitespace. 180
 Error whitespace ParenPad '(' is followed by whitespace. 182
 Error whitespace ParenPad ')' is preceded with whitespace. 182
 Error blocks LeftCurly '{' at column 9 should be on the previous line. 183
 Error sizes LineLength Line is longer than 80 characters (found 98). 184
 Error whitespace ParenPad '(' is followed by whitespace. 184
 Error whitespace ParenPad ')' is preceded with whitespace. 184
 Error whitespace ParenPad '(' is followed by whitespace. 186
 Error whitespace ParenPad ')' is preceded with whitespace. 186
 Error whitespace ParenPad '(' is followed by whitespace. 189
 Error misc FinalParameters Parameter node should be final. 189
 Error misc FinalParameters Parameter elementName should be final. 189
 Error whitespace ParenPad ')' is preceded with whitespace. 189
 Error blocks LeftCurly '{' at column 5 should be on the previous line. 190
 Error whitespace ParenPad '(' is followed by whitespace. 193
 Error whitespace ParenPad ')' is preceded with whitespace. 193
 Error blocks LeftCurly '{' at column 9 should be on the previous line. 194
 Error whitespace ParenPad '(' is followed by whitespace. 195
 Error whitespace ParenPad ')' is preceded with whitespace. 195
 Error whitespace ParenPad '(' is followed by whitespace. 196
 Error whitespace ParenPad '(' is followed by whitespace. 196
 Error whitespace ParenPad ')' is preceded with whitespace. 196
 Error whitespace ParenPad ')' is preceded with whitespace. 196
 Error blocks LeftCurly '{' at column 13 should be on the previous line. 197
 Error whitespace ParenPad '(' is followed by whitespace. 198
 Error whitespace ParenPad ')' is preceded with whitespace. 198
 Error whitespace ParenPad '(' is followed by whitespace. 204
 Error misc FinalParameters Parameter node should be final. 204
 Error misc FinalParameters Parameter elementName should be final. 204
 Error whitespace ParenPad ')' is preceded with whitespace. 204
 Error blocks LeftCurly '{' at column 5 should be on the previous line. 206
 Error whitespace ParenPad '(' is followed by whitespace. 207
 Error whitespace ParenPad ')' is preceded with whitespace. 207
 Error whitespace ParenPad '(' is followed by whitespace. 208
 Error whitespace ParenPad ')' is preceded with whitespace. 208
 Error blocks LeftCurly '{' at column 9 should be on the previous line. 209
 Error whitespace ParenPad '(' is followed by whitespace. 212
 Error whitespace ParenPad ')' is preceded with whitespace. 212
 Error blocks LeftCurly '{' at column 9 should be on the previous line. 213
 Error sizes LineLength Line is longer than 80 characters (found 97). 214
 Error whitespace ParenPad '(' is followed by whitespace. 214
 Error whitespace ParenPad ')' is preceded with whitespace. 214
 Error whitespace ParenPad '(' is followed by whitespace. 216
 Error whitespace ParenPad ')' is preceded with whitespace. 216
 Error whitespace ParenPad '(' is followed by whitespace. 219
 Error misc FinalParameters Parameter sb should be final. 219
 Error misc FinalParameters Parameter goalPrefix should be final. 219
 Error misc FinalParameters Parameter mojo should be final. 219
 Error whitespace ParenPad ')' is preceded with whitespace. 219
 Error blocks LeftCurly '{' at column 5 should be on the previous line. 221
 Error whitespace ParenPad '(' is followed by whitespace. 222
 Error whitespace ParenPad ')' is preceded with whitespace. 222
 Error whitespace ParenPad '(' is followed by whitespace. 223
 Error whitespace ParenPad ')' is preceded with whitespace. 223
 Error whitespace ParenPad '(' is followed by whitespace. 224
 Error whitespace ParenPad ')' is preceded with whitespace. 224
 Error whitespace ParenPad '(' is followed by whitespace. 225
 Error whitespace ParenPad '(' is followed by whitespace. 225
 Error whitespace ParenPad ')' is preceded with whitespace. 225
 Error whitespace ParenPad ')' is preceded with whitespace. 225
 Error blocks LeftCurly '{' at column 9 should be on the previous line. 226
 Error whitespace ParenPad '(' is followed by whitespace. 227
 Error whitespace ParenPad ')' is preceded with whitespace. 227
 Error whitespace ParenPad '(' is followed by whitespace. 228
 Error whitespace ParenPad ')' is preceded with whitespace. 228
 Error sizes LineLength Line is longer than 80 characters (found 86). 229
 Error whitespace ParenPad '(' is followed by whitespace. 229
 Error whitespace ParenPad '(' is followed by whitespace. 229
 Error whitespace ParenPad ')' is preceded with whitespace. 229
 Error whitespace ParenPad '(' is followed by whitespace. 229
 Error whitespace ParenPad ')' is preceded with whitespace. 229
 Error whitespace ParenPad ')' is preceded with whitespace. 229
 Error blocks LeftCurly '{' at column 13 should be on the previous line. 230
 Error whitespace ParenPad '(' is followed by whitespace. 231
 Error whitespace ParenPad ')' is preceded with whitespace. 231
 Error whitespace ParenPad '(' is followed by whitespace. 232
 Error whitespace ParenPad ')' is preceded with whitespace. 232
 Error blocks LeftCurly '{' at column 17 should be on the previous line. 233
 Error whitespace ParenPad '(' is followed by whitespace. 234
 Error whitespace ParenPad ')' is preceded with whitespace. 234
 Error whitespace ParenPad '(' is followed by whitespace. 235
 Error whitespace ParenPad ')' is preceded with whitespace. 235
 Error blocks RightCurly '}' at column 13 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else, do/while or try/catch/finally). 237
 Error whitespace ParenPad '(' is followed by whitespace. 238
 Error whitespace ParenPad ')' is preceded with whitespace. 238
 Error blocks LeftCurly '{' at column 13 should be on the previous line. 239
 Error whitespace ParenPad '(' is followed by whitespace. 240
 Error whitespace ParenPad ')' is preceded with whitespace. 240
 Error whitespace ParenPad '(' is followed by whitespace. 242
 Error whitespace ParenPad ')' is preceded with whitespace. 242
 Error whitespace ParenPad '(' is followed by whitespace. 244
 Error whitespace ParenPad ')' is preceded with whitespace. 244
 Error blocks LeftCurly '{' at column 13 should be on the previous line. 245
 Error whitespace ParenPad '(' is followed by whitespace. 246
 Error whitespace ParenPad ')' is preceded with whitespace. 246
 Error sizes LineLength Line is longer than 80 characters (found 86). 247
 Error whitespace ParenPad '(' is followed by whitespace. 247
 Error whitespace ParenPad ')' is preceded with whitespace. 247
 Error whitespace ParenPad '(' is followed by whitespace. 248
 Error whitespace ParenPad ')' is preceded with whitespace. 248
 Error whitespace ParenPad '(' is followed by whitespace. 249
 Error whitespace ParenPad ')' is preceded with whitespace. 249
 Error whitespace ParenPad '(' is followed by whitespace. 251
 Error whitespace ParenPad ')' is preceded with whitespace. 251
 Error blocks LeftCurly '{' at column 17 should be on the previous line. 252
 Error whitespace ParenPad '(' is followed by whitespace. 253
 Error whitespace ParenPad ')' is preceded with whitespace. 253
 Error sizes LineLength Line is longer than 80 characters (found 94). 259
 Error whitespace ParenPad '(' is followed by whitespace. 259
 Error misc FinalParameters Parameter sb should be final. 259
 Error misc FinalParameters Parameter parameter should be final. 259
 Error misc FinalParameters Parameter configurationElement should be final. 259
 Error whitespace ParenPad ')' is preceded with whitespace. 259
 Error blocks LeftCurly '{' at column 5 should be on the previous line. 261
 Error whitespace ParenPad '(' is followed by whitespace. 262
 Error whitespace ParenPad ')' is preceded with whitespace. 262
 Error whitespace ParenPad '(' is followed by whitespace. 263
 Error whitespace ParenPad ')' is preceded with whitespace. 263
 Error whitespace ParenPad '(' is followed by whitespace. 266
 Error whitespace ParenPad ')' is preceded with whitespace. 266
 Error blocks LeftCurly '{' at column 9 should be on the previous line. 267
 Error sizes LineLength Line is longer than 80 characters (found 104). 268
 Error whitespace ParenPad '(' is followed by whitespace. 268
 Error whitespace ParenPad ')' is preceded with whitespace. 268
 Error sizes LineLength Line is longer than 80 characters (found 109). 272
 Error whitespace ParenPad '(' is followed by whitespace. 272
 Error whitespace ParenPad '(' is followed by whitespace. 272
 Error whitespace ParenPad ')' is preceded with whitespace. 272
 Error whitespace ParenPad ')' is preceded with whitespace. 272
 Error blocks LeftCurly '{' at column 9 should be on the previous line. 273
 Error sizes LineLength Line is longer than 80 characters (found 116). 274
 Error whitespace ParenPad '(' is followed by whitespace. 274
 Error whitespace ParenPad ')' is preceded with whitespace. 274
 Error whitespace ParenPad '(' is followed by whitespace. 276
 Error whitespace ParenPad ')' is preceded with whitespace. 276
 Error whitespace ParenPad '(' is followed by whitespace. 277
 Error whitespace ParenPad ')' is preceded with whitespace. 277
 Error sizes LineLength Line is longer than 80 characters (found 82). 278
 Error whitespace ParenPad '(' is followed by whitespace. 278
 Error whitespace ParenPad '(' is followed by whitespace. 278
 Error whitespace ParenPad ')' is preceded with whitespace. 278
 Error whitespace ParenPad '(' is followed by whitespace. 278
 Error whitespace ParenPad ')' is preceded with whitespace. 278
 Error whitespace ParenPad ')' is preceded with whitespace. 278
 Error blocks LeftCurly '{' at column 9 should be on the previous line. 279
 Error whitespace ParenPad '(' is followed by whitespace. 280
 Error coding MagicNumber '3' is a magic number. 280
 Error whitespace ParenPad ')' is preceded with whitespace. 280
 Error whitespace ParenPad '(' is followed by whitespace. 281
 Error whitespace ParenPad ')' is preceded with whitespace. 281
 Error whitespace ParenPad '(' is followed by whitespace. 283
 Error whitespace ParenPad '(' is followed by whitespace. 283
 Error whitespace ParenPad ')' is preceded with whitespace. 283
 Error whitespace ParenPad ')' is preceded with whitespace. 283
 Error whitespace ParenPad '(' is followed by whitespace. 284
 Error coding MagicNumber '3' is a magic number. 284
 Error whitespace ParenPad ')' is preceded with whitespace. 284
 Error whitespace ParenPad '(' is followed by whitespace. 286
 Error whitespace ParenPad '(' is followed by whitespace. 286
 Error whitespace ParenPad '(' is followed by whitespace. 286
 Error whitespace ParenPad ')' is preceded with whitespace. 286
 Error whitespace ParenPad ')' is preceded with whitespace. 286
 Error whitespace ParenPad ')' is preceded with whitespace. 286
 Error blocks LeftCurly '{' at column 9 should be on the previous line. 287
 Error whitespace ParenPad '(' is followed by whitespace. 288
 Error coding MagicNumber '3' is a magic number. 288
 Error whitespace ParenPad ')' is preceded with whitespace. 288
 Error sizes LineLength Line is longer than 80 characters (found 112). 290
 Error whitespace ParenPad '(' is followed by whitespace. 290
 Error whitespace ParenPad '(' is followed by whitespace. 290
 Error whitespace ParenPad ')' is preceded with whitespace. 290
 Error whitespace ParenPad '(' is followed by whitespace. 290
 Error whitespace ParenPad ')' is preceded with whitespace. 290
 Error whitespace ParenPad ')' is preceded with whitespace. 290
 Error blocks LeftCurly '{' at column 9 should be on the previous line. 291
 Error sizes LineLength Line is longer than 80 characters (found 102). 292
 Error whitespace ParenPad '(' is followed by whitespace. 292
 Error whitespace ParenPad ')' is preceded with whitespace. 292
 Error whitespace ParenPad '(' is followed by whitespace. 293
 Error coding MagicNumber '3' is a magic number. 293
 Error whitespace ParenPad ')' is preceded with whitespace. 293
 Error whitespace ParenPad '(' is followed by whitespace. 296
 Error whitespace ParenPad ')' is preceded with whitespace. 296
 Error whitespace ParenPad '(' is followed by whitespace. 308
 Error misc FinalParameters Parameter str should be final. 308
 Error misc FinalParameters Parameter repeat should be final. 308
 Error whitespace ParenPad ')' is preceded with whitespace. 308
 Error blocks LeftCurly '{' at column 5 should be on the previous line. 309
 Error whitespace ParenPad '(' is followed by whitespace. 310
 Error whitespace ParenPad ')' is preceded with whitespace. 310
 Error whitespace ParenPad '(' is followed by whitespace. 312
 Error whitespace ParenPad ')' is preceded with whitespace. 312
 Error blocks LeftCurly '{' at column 9 should be on the previous line. 313
 Error whitespace ParenPad '(' is followed by whitespace. 314
 Error whitespace ParenPad ')' is preceded with whitespace. 314
 Error sizes LineLength Line is longer than 80 characters (found 97). 321
 Error sizes LineLength Line is longer than 80 characters (found 86). 324
 Error sizes LineLength Line is longer than 80 characters (found 88). 326
 Error whitespace ParenPad '(' is followed by whitespace. 328
 Error misc FinalParameters Parameter sb should be final. 328
 Error misc FinalParameters Parameter description should be final. 328
 Error misc FinalParameters Parameter indent should be final. 328
 Error whitespace ParenPad ')' is preceded with whitespace. 328
 Error blocks LeftCurly '{' at column 5 should be on the previous line. 329
 Error sizes LineLength Line is longer than 80 characters (found 84). 330
 Error whitespace ParenPad '(' is followed by whitespace. 330
 Error whitespace ParenPad '(' is followed by whitespace. 330
 Error whitespace ParenPad ')' is preceded with whitespace. 330
 Error whitespace ParenPad ')' is preceded with whitespace. 330
 Error blocks LeftCurly '{' at column 9 should be on the previous line. 331
 Error whitespace ParenPad '(' is followed by whitespace. 332
 Error whitespace ParenPad ')' is preceded with whitespace. 332
 Error whitespace ParenPad '(' is followed by whitespace. 332
 Error whitespace ParenPad ')' is preceded with whitespace. 332
 Error sizes LineLength Line is longer than 80 characters (found 85). 339
 Error sizes LineLength Line is longer than 80 characters (found 87). 340
 Error sizes LineLength Line is longer than 80 characters (found 98). 346
 Error whitespace ParenPad '(' is followed by whitespace. 346
 Error misc FinalParameters Parameter text should be final. 346
 Error misc FinalParameters Parameter indent should be final. 346
 Error misc FinalParameters Parameter indentSize should be final. 346
 Error misc FinalParameters Parameter lineLength should be final. 346
 Error whitespace ParenPad ')' is preceded with whitespace. 346
 Error blocks LeftCurly '{' at column 5 should be on the previous line. 347
 Error whitespace ParenPad '(' is followed by whitespace. 350
 Error whitespace ParenPad ')' is preceded with whitespace. 350
 Error whitespace ParenPad '(' is followed by whitespace. 352
 Error whitespace ParenPad ')' is preceded with whitespace. 352
 Error whitespace ParenPad '(' is followed by whitespace. 354
 Error whitespace ParenPad ')' is preceded with whitespace. 354
 Error blocks LeftCurly '{' at column 9 should be on the previous line. 355
 Error whitespace ParenPad '(' is followed by whitespace. 356
 Error whitespace ParenPad ')' is preceded with whitespace. 356
 Error sizes LineLength Line is longer than 80 characters (found 93). 363
 Error sizes LineLength Line is longer than 80 characters (found 86). 365
 Error sizes LineLength Line is longer than 80 characters (found 98). 370
 Error whitespace ParenPad '(' is followed by whitespace. 370
 Error misc FinalParameters Parameter lines should be final. 370
 Error misc FinalParameters Parameter line should be final. 370
 Error misc FinalParameters Parameter indentSize should be final. 370
 Error misc FinalParameters Parameter lineLength should be final. 370
 Error whitespace ParenPad ')' is preceded with whitespace. 370
 Error blocks LeftCurly '{' at column 5 should be on the previous line. 371
 Error whitespace ParenPad '(' is followed by whitespace. 372
 Error whitespace ParenPad ')' is preceded with whitespace. 372
 Error whitespace ParenPad '(' is followed by whitespace. 373
 Error coding MagicNumber '256' is a magic number. 373
 Error whitespace ParenPad ')' is preceded with whitespace. 373
 Error whitespace ParenPad '(' is followed by whitespace. 375
 Error whitespace ParenPad ')' is preceded with whitespace. 375
 Error whitespace ParenPad '(' is followed by whitespace. 377
 Error whitespace ParenPad ')' is preceded with whitespace. 377
 Error blocks LeftCurly '{' at column 9 should be on the previous line. 378
 Error whitespace ParenPad '(' is followed by whitespace. 379
 Error whitespace ParenPad ')' is preceded with whitespace. 379
 Error blocks LeftCurly '{' at column 13 should be on the previous line. 380
 Error whitespace ParenPad '(' is followed by whitespace. 381
 Error whitespace ParenPad ')' is preceded with whitespace. 381
 Error blocks LeftCurly '{' at column 17 should be on the previous line. 382
 Error whitespace ParenPad '(' is followed by whitespace. 383
 Error whitespace ParenPad ')' is preceded with whitespace. 383
 Error whitespace ParenPad '(' is followed by whitespace. 384
 Error whitespace ParenPad ')' is preceded with whitespace. 384
 Error whitespace ParenPad '(' is followed by whitespace. 385
 Error whitespace ParenPad '(' is followed by whitespace. 385
 Error whitespace ParenPad ')' is preceded with whitespace. 385
 Error whitespace ParenPad ')' is preceded with whitespace. 385
 Error blocks RightCurly '}' at column 17 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else, do/while or try/catch/finally). 386
 Error blocks LeftCurly '{' at column 17 should be on the previous line. 388
 Error whitespace ParenPad '(' is followed by whitespace. 389
 Error whitespace ParenPad ')' is preceded with whitespace. 389
 Error whitespace ParenPad '(' is followed by whitespace. 393
 Error whitespace ParenPad ')' is preceded with whitespace. 393
 Error blocks LeftCurly '{' at column 13 should be on the previous line. 394
 Error whitespace ParenPad '(' is followed by whitespace. 395
 Error whitespace ParenPad ')' is preceded with whitespace. 395
 Error whitespace ParenPad '(' is followed by whitespace. 396
 Error whitespace ParenPad ')' is preceded with whitespace. 396
 Error blocks LeftCurly '{' at column 17 should be on the previous line. 397
 Error sizes LineLength Line is longer than 80 characters (found 88). 398
 Error whitespace ParenPad '(' is followed by whitespace. 398
 Error whitespace ParenPad '(' is followed by whitespace. 398
 Error whitespace ParenPad ')' is preceded with whitespace. 398
 Error whitespace ParenPad ')' is preceded with whitespace. 398
 Error blocks RightCurly '}' at column 17 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else, do/while or try/catch/finally). 399
 Error whitespace ParenPad '(' is followed by whitespace. 400
 Error whitespace ParenPad ')' is preceded with whitespace. 400
 Error blocks LeftCurly '{' at column 17 should be on the previous line. 401
 Error whitespace ParenPad '(' is followed by whitespace. 402
 Error whitespace ParenPad ')' is preceded with whitespace. 402
 Error blocks RightCurly '}' at column 17 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else, do/while or try/catch/finally). 403
 Error blocks LeftCurly '{' at column 17 should be on the previous line. 405
 Error whitespace ParenPad '(' is followed by whitespace. 406
 Error whitespace ParenPad ')' is preceded with whitespace. 406
 Error whitespace ParenPad '(' is followed by whitespace. 410
 Error whitespace ParenPad ')' is preceded with whitespace. 410
 Error sizes LineLength Line is longer than 80 characters (found 103). 416
 Error whitespace ParenPad '(' is followed by whitespace. 419
 Error misc FinalParameters Parameter line should be final. 419
 Error whitespace ParenPad ')' is preceded with whitespace. 419
 Error blocks LeftCurly '{' at column 5 should be on the previous line. 420
 Error whitespace ParenPad '(' is followed by whitespace. 422
 Error whitespace ParenPad '(' is followed by whitespace. 422
 Error whitespace ParenPad ')' is preceded with whitespace. 422
 Error whitespace ParenPad ')' is preceded with whitespace. 422
 Error blocks LeftCurly '{' at column 9 should be on the previous line. 423
 Error whitespace ParenPad '(' is followed by whitespace. 426
 Error coding MagicNumber '4' is a magic number. 426
 Error whitespace ParenPad ')' is preceded with whitespace. 426
 Error blocks LeftCurly '{' at column 9 should be on the previous line. 427
 Error whitespace ParenPad '(' is followed by whitespace. 428
 Error whitespace ParenPad '(' is followed by whitespace. 428
 Error whitespace ParenPad ')' is preceded with whitespace. 428
 Error whitespace ParenPad ')' is preceded with whitespace. 428
 Error blocks LeftCurly '{' at column 13 should be on the previous line. 429
 Error whitespace ParenPad '(' is followed by whitespace. 437
 Error misc FinalParameters Parameter expression should be final. 437
 Error whitespace ParenPad ')' is preceded with whitespace. 437
 Error blocks LeftCurly '{' at column 5 should be on the previous line. 438
 Error sizes LineLength Line is longer than 80 characters (found 94). 439
 Error whitespace ParenPad '(' is followed by whitespace. 439
 Error whitespace ParenPad '(' is followed by whitespace. 439
 Error whitespace ParenPad ')' is preceded with whitespace. 439
 Error whitespace ParenPad '(' is followed by whitespace. 439
 Error whitespace ParenPad ')' is preceded with whitespace. 439
 Error whitespace ParenPad '(' is followed by whitespace. 440
 Error whitespace ParenPad ')' is preceded with whitespace. 440
 Error whitespace ParenPad '(' is followed by whitespace. 440
 Error whitespace ParenPad ')' is preceded with whitespace. 440
 Error whitespace ParenPad ')' is preceded with whitespace. 440
 Error blocks LeftCurly '{' at column 9 should be on the previous line. 441
 Error whitespace ParenPad '(' is followed by whitespace. 443
 Error whitespace ParenPad ')' is preceded with whitespace. 443

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). 80
 Error sizes LineLength Line is longer than 80 characters (found 89). 85
 Error sizes LineLength Line is longer than 80 characters (found 89). 90
 Error sizes LineLength Line is longer than 80 characters (found 87). 115
 Error sizes LineLength Line is longer than 80 characters (found 87). 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). 140
 Error sizes LineLength Line is longer than 80 characters (found 89). 145
 Error sizes LineLength Line is longer than 80 characters (found 89). 160
 Error sizes LineLength Line is longer than 80 characters (found 87). 175
 Error sizes LineLength Line is longer than 80 characters (found 87). 180
 Error design VisibilityModifier Variable 'sourceEncoding' must be private and have accessor methods. 191
 Error sizes LineLength Line is longer than 80 characters (found 114). 219
 Error sizes LineLength Line is longer than 80 characters (found 128). 220
 Error sizes LineLength Line is longer than 80 characters (found 112). 221
 Error sizes LineLength Line is longer than 80 characters (found 100). 222
 Error design VisibilityModifier Variable 'targetBytecode' must be private and have accessor methods. 235
 Error sizes LineLength Line is longer than 80 characters (found 113). 238
 Error design VisibilityModifier Variable 'skipBytecodeCheck' must be private and have accessor methods. 243
 Error design VisibilityModifier Variable 'debug' must be private and have accessor methods. 249
 Error design VisibilityModifier Variable 'verbose' must be private and have accessor methods. 255
 Error design VisibilityModifier Variable 'warningLevel' must be private and have accessor methods. 271
 Error sizes LineLength Line is longer than 80 characters (found 138). 274
 Error design VisibilityModifier Variable 'tolerance' must be private and have accessor methods. 277
 Error sizes LineLength Line is longer than 80 characters (found 109). 280
 Error design VisibilityModifier Variable 'invokeDynamic' must be private and have accessor methods. 284
 Error design VisibilityModifier Variable 'parallelParsing' must be private and have accessor methods. 293
 Error sizes LineLength Line is longer than 80 characters (found 125). 296
 Error sizes LineLength Line is longer than 80 characters (found 105). 297
 Error design VisibilityModifier Variable 'configScript' must be private and have accessor methods. 300
 Error sizes LineLength Line is longer than 80 characters (found 109). 303
 Error design VisibilityModifier Variable 'parameters' must be private and have accessor methods. 307
 Error sizes LineLength Line is longer than 80 characters (found 118). 316
 Error design VisibilityModifier Variable 'includeClasspath' must be private and have accessor methods. 321
 Error sizes LineLength Line is longer than 80 characters (found 108). 325
 Error design VisibilityModifier Variable 'previewFeatures' must be private and have accessor methods. 330
 Error sizes LineLength Line is longer than 80 characters (found 87). 337
 Error sizes LineLength Line is longer than 80 characters (found 92). 338
 Error sizes LineLength Line is longer than 80 characters (found 99). 339
 Error sizes LineLength Line is longer than 80 characters (found 96). 340
 Error sizes LineLength Line is longer than 80 characters (found 112). 341
 Error sizes LineLength Line is longer than 80 characters (found 90). 342
 Error sizes LineLength Line is longer than 80 characters (found 123). 345
 Error sizes LineLength Line is longer than 80 characters (found 141). 346
 Error sizes LineLength Line is longer than 80 characters (found 84). 355
 Error sizes LineLength Line is longer than 80 characters (found 216). 358
 Error sizes LineLength Line is longer than 80 characters (found 122). 367
 Error sizes LineLength Line is longer than 80 characters (found 110). 368
 Error sizes LineLength Line is longer than 80 characters (found 98). 369
 Error sizes LineLength Line is longer than 80 characters (found 118). 372
 Error sizes LineLength Line is longer than 80 characters (found 196). 373
 Error sizes LineLength Line is longer than 80 characters (found 143). 374
 Error sizes LineLength Line is longer than 80 characters (found 196). 377
 Error sizes LineLength Line is longer than 80 characters (found 83). 380
 Error sizes LineLength Line is longer than 80 characters (found 108). 383
 Error sizes LineLength Line is longer than 80 characters (found 103). 384
 Error sizes LineLength Line is longer than 80 characters (found 88). 396
 Error sizes LineLength Line is longer than 80 characters (found 115). 398
 Error sizes LineLength Line is longer than 80 characters (found 112). 399
 Error sizes LineLength Line is longer than 80 characters (found 128). 400
 Error sizes LineLength Line is longer than 80 characters (found 366). 402
 Error sizes LineLength Line is longer than 80 characters (found 246). 405
 Error sizes LineLength Line is longer than 80 characters (found 205). 407
 Error sizes LineLength Line is longer than 80 characters (found 91). 410
 Error sizes LineLength Line is longer than 80 characters (found 87). 422
 Error sizes LineLength Line is longer than 80 characters (found 113). 425
 Error sizes LineLength Line is longer than 80 characters (found 120). 426
 Error sizes LineLength Line is longer than 80 characters (found 117). 427
 Error sizes LineLength Line is longer than 80 characters (found 133). 428
 Error sizes LineLength Line is longer than 80 characters (found 232). 431
 Error sizes LineLength Line is longer than 80 characters (found 102). 432
 Error sizes LineLength Line is longer than 80 characters (found 148). 435
 Error sizes LineLength Line is longer than 80 characters (found 236). 437
 Error sizes LineLength Line is longer than 80 characters (found 86). 439
 Error sizes LineLength Line is longer than 80 characters (found 132). 440
 Error sizes LineLength Line is longer than 80 characters (found 94). 441
 Error sizes LineLength Line is longer than 80 characters (found 82). 443
 Error sizes LineLength Line is longer than 80 characters (found 147). 444
 Error sizes LineLength Line is longer than 80 characters (found 115). 445
 Error sizes LineLength Line is longer than 80 characters (found 100). 446
 Error sizes LineLength Line is longer than 80 characters (found 193). 447
 Error sizes LineLength Line is longer than 80 characters (found 163). 448
 Error sizes LineLength Line is longer than 80 characters (found 214). 450
 Error sizes LineLength Line is longer than 80 characters (found 99). 451
 Error sizes LineLength Line is longer than 80 characters (found 104). 452
 Error sizes LineLength Line is longer than 80 characters (found 118). 455
 Error sizes LineLength Line is longer than 80 characters (found 122). 456
 Error sizes LineLength Line is longer than 80 characters (found 128). 457
 Error sizes LineLength Line is longer than 80 characters (found 122). 458
 Error sizes LineLength Line is longer than 80 characters (found 173). 459
 Error sizes LineLength Line is longer than 80 characters (found 131). 462
 Error sizes LineLength Line is longer than 80 characters (found 296). 463
 Error sizes LineLength Line is longer than 80 characters (found 150). 465
 Error sizes LineLength Line is longer than 80 characters (found 186). 468
 Error sizes LineLength Line is longer than 80 characters (found 139). 472
 Error sizes LineLength Line is longer than 80 characters (found 162). 474
 Error sizes LineLength Line is longer than 80 characters (found 192). 479
 Error sizes LineLength Line is longer than 80 characters (found 189). 484
 Error sizes LineLength Line is longer than 80 characters (found 179). 487
 Error sizes LineLength Line is longer than 80 characters (found 238). 490
 Error sizes LineLength Line is longer than 80 characters (found 140). 496
 Error sizes LineLength Line is longer than 80 characters (found 179). 498
 Error sizes LineLength Line is longer than 80 characters (found 233). 501
 Error sizes LineLength Line is longer than 80 characters (found 130). 505
 Error sizes LineLength Line is longer than 80 characters (found 184). 506
 Error sizes LineLength Line is longer than 80 characters (found 117). 518
 Error sizes LineLength Line is longer than 80 characters (found 85). 519
 Error sizes LineLength Line is longer than 80 characters (found 352). 523
 Error sizes LineLength Line is longer than 80 characters (found 156). 525
 Error sizes LineLength Line is longer than 80 characters (found 141). 531
 Error sizes LineLength Line is longer than 80 characters (found 141). 535
 Error sizes LineLength Line is longer than 80 characters (found 141). 539
 Error sizes LineLength Line is longer than 80 characters (found 140). 543
 Error sizes LineLength Line is longer than 80 characters (found 140). 547
 Error sizes LineLength Line is longer than 80 characters (found 146). 551
 Error sizes LineLength Line is longer than 80 characters (found 128). 554
 Error sizes LineLength Line is longer than 80 characters (found 168). 555
 Error sizes LineLength Line is longer than 80 characters (found 140). 559
 Error sizes LineLength Line is longer than 80 characters (found 140). 563
 Error sizes LineLength Line is longer than 80 characters (found 146). 567
 Error sizes LineLength Line is longer than 80 characters (found 127). 570
 Error sizes LineLength Line is longer than 80 characters (found 196). 571
 Error sizes LineLength Line is longer than 80 characters (found 111). 573
 Error sizes LineLength Line is longer than 80 characters (found 128). 574
 Error sizes LineLength Line is longer than 80 characters (found 197). 575
 Error sizes LineLength Line is longer than 80 characters (found 99). 579
 Error sizes LineLength Line is longer than 80 characters (found 103). 580
 Error sizes LineLength Line is longer than 80 characters (found 196). 581
 Error sizes LineLength Line is longer than 80 characters (found 155). 582
 Error sizes LineLength Line is longer than 80 characters (found 197). 583
 Error sizes LineLength Line is longer than 80 characters (found 140). 587
 Error sizes LineLength Line is longer than 80 characters (found 142). 589
 Error sizes LineLength Line is longer than 80 characters (found 140). 591
 Error sizes LineLength Line is longer than 80 characters (found 146). 593
 Error sizes LineLength Line is longer than 80 characters (found 221). 594
 Error sizes LineLength Line is longer than 80 characters (found 89). 598
 Error misc FinalParameters Parameter targetBytecode should be final. 598
 Error sizes LineLength Line is longer than 80 characters (found 88). 605

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). 82
 Error sizes LineLength Line is longer than 80 characters (found 89). 87
 Error sizes LineLength Line is longer than 80 characters (found 89). 92
 Error sizes LineLength Line is longer than 80 characters (found 87). 112
 Error sizes LineLength Line is longer than 80 characters (found 87). 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 89). 137
 Error sizes LineLength Line is longer than 80 characters (found 89). 142
 Error sizes LineLength Line is longer than 80 characters (found 87). 167
 Error sizes LineLength Line is longer than 80 characters (found 87). 172
 Error design VisibilityModifier Variable 'sourceEncoding' must be private and have accessor methods. 188
 Error sizes LineLength Line is longer than 80 characters (found 114). 216
 Error sizes LineLength Line is longer than 80 characters (found 128). 217
 Error sizes LineLength Line is longer than 80 characters (found 112). 218
 Error sizes LineLength Line is longer than 80 characters (found 100). 219
 Error design VisibilityModifier Variable 'targetBytecode' must be private and have accessor methods. 234
 Error sizes LineLength Line is longer than 80 characters (found 113). 237
 Error design VisibilityModifier Variable 'skipBytecodeCheck' must be private and have accessor methods. 242
 Error design VisibilityModifier Variable 'debug' must be private and have accessor methods. 248
 Error design VisibilityModifier Variable 'verbose' must be private and have accessor methods. 254
 Error design VisibilityModifier Variable 'warningLevel' must be private and have accessor methods. 270
 Error sizes LineLength Line is longer than 80 characters (found 138). 273
 Error design VisibilityModifier Variable 'tolerance' must be private and have accessor methods. 276
 Error sizes LineLength Line is longer than 80 characters (found 118). 285
 Error design VisibilityModifier Variable 'includeClasspath' must be private and have accessor methods. 290
 Error sizes LineLength Line is longer than 80 characters (found 96). 298
 Error sizes LineLength Line is longer than 80 characters (found 103). 299
 Error sizes LineLength Line is longer than 80 characters (found 100). 300
 Error sizes LineLength Line is longer than 80 characters (found 116). 301
 Error sizes LineLength Line is longer than 80 characters (found 90). 302
 Error sizes LineLength Line is longer than 80 characters (found 260). 304
 Error sizes LineLength Line is longer than 80 characters (found 81). 306
 Error sizes LineLength Line is longer than 80 characters (found 84). 313
 Error sizes LineLength Line is longer than 80 characters (found 226). 316
 Error sizes LineLength Line is longer than 80 characters (found 122). 325
 Error sizes LineLength Line is longer than 80 characters (found 130). 326
 Error sizes LineLength Line is longer than 80 characters (found 98). 327
 Error sizes LineLength Line is longer than 80 characters (found 111). 330
 Error sizes LineLength Line is longer than 80 characters (found 196). 331
 Error sizes LineLength Line is longer than 80 characters (found 229). 332
 Error sizes LineLength Line is longer than 80 characters (found 144). 335
 Error sizes LineLength Line is longer than 80 characters (found 99). 338
 Error sizes LineLength Line is longer than 80 characters (found 81). 344
 Error sizes LineLength Line is longer than 80 characters (found 103). 347
 Error sizes LineLength Line is longer than 80 characters (found 100). 348
 Error sizes LineLength Line is longer than 80 characters (found 116). 349
 Error sizes LineLength Line is longer than 80 characters (found 201). 351
 Error sizes LineLength Line is longer than 80 characters (found 102). 352
 Error sizes LineLength Line is longer than 80 characters (found 118). 353
 Error sizes LineLength Line is longer than 80 characters (found 122). 354
 Error sizes LineLength Line is longer than 80 characters (found 128). 355
 Error sizes LineLength Line is longer than 80 characters (found 122). 356
 Error sizes LineLength Line is longer than 80 characters (found 173). 357
 Error sizes LineLength Line is longer than 80 characters (found 139). 359
 Error sizes LineLength Line is longer than 80 characters (found 134). 364
 Error sizes LineLength Line is longer than 80 characters (found 84). 372
 Error sizes LineLength Line is longer than 80 characters (found 95). 375
 Error sizes LineLength Line is longer than 80 characters (found 97). 376
 Error sizes LineLength Line is longer than 80 characters (found 100). 377
 Error sizes LineLength Line is longer than 80 characters (found 116). 378
 Error sizes LineLength Line is longer than 80 characters (found 285). 380
 Error sizes LineLength Line is longer than 80 characters (found 85). 385
 Error sizes LineLength Line is longer than 80 characters (found 140). 387
 Error sizes LineLength Line is longer than 80 characters (found 93). 390
 Error sizes LineLength Line is longer than 80 characters (found 114). 396
 Error sizes LineLength Line is longer than 80 characters (found 112). 405
 Error sizes LineLength Line is longer than 80 characters (found 123). 408
 Error misc FinalParameters Parameter outputDirectory should be final. 416
 Error sizes LineLength Line is longer than 80 characters (found 100). 418
 Error sizes LineLength Line is longer than 80 characters (found 86). 422
 Error sizes LineLength Line is longer than 80 characters (found 123). 423
 Error sizes LineLength Line is longer than 80 characters (found 118). 424
 Error sizes LineLength Line is longer than 80 characters (found 87). 425
 Error sizes LineLength Line is longer than 80 characters (found 101). 433
 Error sizes LineLength Line is longer than 80 characters (found 117). 439
 Error sizes LineLength Line is longer than 80 characters (found 85). 440
 Error sizes LineLength Line is longer than 80 characters (found 352). 444
 Error sizes LineLength Line is longer than 80 characters (found 156). 446
 Error sizes LineLength Line is longer than 80 characters (found 141). 452
 Error sizes LineLength Line is longer than 80 characters (found 141). 456
 Error sizes LineLength Line is longer than 80 characters (found 141). 460
 Error sizes LineLength Line is longer than 80 characters (found 140). 464
 Error sizes LineLength Line is longer than 80 characters (found 140). 468
 Error sizes LineLength Line is longer than 80 characters (found 146). 472
 Error sizes LineLength Line is longer than 80 characters (found 128). 475
 Error sizes LineLength Line is longer than 80 characters (found 168). 476
 Error sizes LineLength Line is longer than 80 characters (found 140). 480
 Error sizes LineLength Line is longer than 80 characters (found 140). 484
 Error sizes LineLength Line is longer than 80 characters (found 146). 488
 Error sizes LineLength Line is longer than 80 characters (found 127). 491
 Error sizes LineLength Line is longer than 80 characters (found 196). 492
 Error sizes LineLength Line is longer than 80 characters (found 111). 494
 Error sizes LineLength Line is longer than 80 characters (found 128). 495
 Error sizes LineLength Line is longer than 80 characters (found 197). 496
 Error sizes LineLength Line is longer than 80 characters (found 99). 500
 Error sizes LineLength Line is longer than 80 characters (found 103). 501
 Error sizes LineLength Line is longer than 80 characters (found 196). 502
 Error sizes LineLength Line is longer than 80 characters (found 155). 503
 Error sizes LineLength Line is longer than 80 characters (found 197). 504
 Error sizes LineLength Line is longer than 80 characters (found 140). 508
 Error sizes LineLength Line is longer than 80 characters (found 142). 510
 Error sizes LineLength Line is longer than 80 characters (found 140). 512
 Error sizes LineLength Line is longer than 80 characters (found 146). 514
 Error sizes LineLength Line is longer than 80 characters (found 221). 515
 Error sizes LineLength Line is longer than 80 characters (found 89). 519
 Error misc FinalParameters Parameter targetBytecode should be final. 519
 Error sizes LineLength Line is longer than 80 characters (found 88). 526

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 97). 75
 Error sizes LineLength Line is longer than 80 characters (found 113). 79
 Error sizes LineLength Line is longer than 80 characters (found 181). 81
 Error sizes LineLength Line is longer than 80 characters (found 123). 83
 Error sizes LineLength Line is longer than 80 characters (found 117). 85
 Error sizes LineLength Line is longer than 80 characters (found 111). 87
 Error sizes LineLength Line is longer than 80 characters (found 87). 89
 Error sizes LineLength Line is longer than 80 characters (found 105). 91

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 228). 89
 Error sizes LineLength Line is longer than 80 characters (found 83). 93
 Error sizes LineLength Line is longer than 80 characters (found 154). 96
 Error sizes LineLength Line is longer than 80 characters (found 176). 100
 Error sizes LineLength Line is longer than 80 characters (found 83). 107
 Error sizes LineLength Line is longer than 80 characters (found 82). 111
 Error sizes LineLength Line is longer than 80 characters (found 153). 119
 Error misc TodoComment Comment matches to-do format 'TODO:'. 119
 Error sizes LineLength Line is longer than 80 characters (found 195). 128
 Error sizes LineLength Line is longer than 80 characters (found 143). 130
 Error sizes LineLength Line is longer than 80 characters (found 203). 131
 Error sizes LineLength Line is longer than 80 characters (found 127). 133
 Error sizes LineLength Line is longer than 80 characters (found 111). 136
 Error sizes LineLength Line is longer than 80 characters (found 117). 138
 Error sizes LineLength Line is longer than 80 characters (found 176). 144
 Error sizes LineLength Line is longer than 80 characters (found 127). 150
 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. 150
 Error misc FinalParameters Parameter consoleClass should be final. 150
 Error misc FinalParameters Parameter console should be final. 150
 Error sizes LineLength Line is longer than 80 characters (found 91). 152
 Error sizes LineLength Line is longer than 80 characters (found 97). 157
 Error sizes LineLength Line is longer than 80 characters (found 127). 161
 Error sizes LineLength Line is longer than 80 characters (found 123). 164
 Error sizes LineLength Line is longer than 80 characters (found 131). 175
 Error sizes LineLength Line is longer than 80 characters (found 115). 176
 Error sizes LineLength Line is longer than 80 characters (found 118). 177
 Error sizes LineLength Line is longer than 80 characters (found 174). 179
 Error sizes LineLength Line is longer than 80 characters (found 97). 182
 Error sizes LineLength Line is longer than 80 characters (found 136). 191
 Error sizes LineLength Line is longer than 80 characters (found 138). 195
 Error sizes LineLength Line is longer than 80 characters (found 109). 204
 Error sizes LineLength Line is longer than 80 characters (found 113). 205
 Error sizes LineLength Line is longer than 80 characters (found 129). 206
 Error sizes LineLength Line is longer than 80 characters (found 178). 208
 Error misc FinalParameters Parameter consoleClass should be final. 208
 Error misc FinalParameters Parameter bindingClass should be final. 208
 Error misc FinalParameters Parameter console should be final. 208
 Error sizes LineLength Line is longer than 80 characters (found 90). 210
 Error sizes LineLength Line is longer than 80 characters (found 97). 211
 Error sizes LineLength Line is longer than 80 characters (found 93). 212
 Error sizes LineLength Line is longer than 80 characters (found 113). 215
 Error sizes LineLength Line is longer than 80 characters (found 102). 217
 Error sizes LineLength Line is longer than 80 characters (found 118). 219
 Error sizes LineLength Line is longer than 80 characters (found 131). 220
 Error sizes LineLength Line is longer than 80 characters (found 101). 223
 Error sizes LineLength Line is longer than 80 characters (found 130). 228
 Error sizes LineLength Line is longer than 80 characters (found 137). 239
 Error sizes LineLength Line is longer than 80 characters (found 111). 255
 Error sizes LineLength Line is longer than 80 characters (found 90). 258

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 228). 140
 Error sizes LineLength Line is longer than 80 characters (found 83). 144
 Error sizes LineLength Line is longer than 80 characters (found 154). 147
 Error sizes LineLength Line is longer than 80 characters (found 176). 151
 Error sizes LineLength Line is longer than 80 characters (found 90). 156
 Error sizes LineLength Line is longer than 80 characters (found 195). 164
 Error sizes LineLength Line is longer than 80 characters (found 123). 166
 Error sizes LineLength Line is longer than 80 characters (found 117). 168
 Error sizes LineLength Line is longer than 80 characters (found 111). 170
 Error sizes LineLength Line is longer than 80 characters (found 176). 176
 Error sizes LineLength Line is longer than 80 characters (found 120). 187
 Error sizes LineLength Line is longer than 80 characters (found 104). 188
 Error sizes LineLength Line is longer than 80 characters (found 107). 189
 Error sizes LineLength Line is longer than 80 characters (found 100). 190
 Error sizes LineLength Line is longer than 80 characters (found 171). 192
 Error sizes LineLength Line is longer than 80 characters (found 126). 195
 Error sizes LineLength Line is longer than 80 characters (found 106). 196
 Error sizes LineLength Line is longer than 80 characters (found 139). 197
 Error sizes LineLength Line is longer than 80 characters (found 175). 198
 Error sizes LineLength Line is longer than 80 characters (found 124). 200
 Error sizes LineLength Line is longer than 80 characters (found 101). 203
 Error sizes LineLength Line is longer than 80 characters (found 136). 212
 Error sizes LineLength Line is longer than 80 characters (found 117). 224
 Error sizes LineLength Line is longer than 80 characters (found 101). 225
 Error sizes LineLength Line is longer than 80 characters (found 140). 226
 Error sizes LineLength Line is longer than 80 characters (found 169). 228
 Error misc TodoComment Comment matches to-do format 'TODO:'. 232
 Error sizes LineLength Line is longer than 80 characters (found 107). 240
 Error sizes LineLength Line is longer than 80 characters (found 99). 241
 Error sizes LineLength Line is longer than 80 characters (found 81). 244
 Error sizes LineLength Line is longer than 80 characters (found 103). 245
 Error sizes LineLength Line is longer than 80 characters (found 148). 251
 Error sizes LineLength Line is longer than 80 characters (found 125). 253
 Error sizes LineLength Line is longer than 80 characters (found 83). 266
 Error sizes LineLength Line is longer than 80 characters (found 117). 267
 Error sizes LineLength Line is longer than 80 characters (found 101). 268
 Error sizes LineLength Line is longer than 80 characters (found 167). 270
 Error misc FinalParameters Parameter groovyShellClass should be final. 270
 Error misc FinalParameters Parameter shell should be final. 270
 Error misc FinalParameters Parameter script should be final. 270
 Error sizes LineLength Line is longer than 80 characters (found 98). 274
 Error sizes LineLength Line is longer than 80 characters (found 105). 278
 Error sizes LineLength Line is longer than 80 characters (found 89). 280
 Error sizes LineLength Line is longer than 80 characters (found 103). 287
 Error sizes LineLength Line is longer than 80 characters (found 116). 291

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 97). 76
 Error sizes LineLength Line is longer than 80 characters (found 125). 81
 Error sizes LineLength Line is longer than 80 characters (found 85). 85
 Error sizes LineLength Line is longer than 80 characters (found 89). 86
 Error sizes LineLength Line is longer than 80 characters (found 181). 88
 Error sizes LineLength Line is longer than 80 characters (found 123). 90
 Error sizes LineLength Line is longer than 80 characters (found 117). 92
 Error sizes LineLength Line is longer than 80 characters (found 111). 94
 Error sizes LineLength Line is longer than 80 characters (found 87). 96
 Error sizes LineLength Line is longer than 80 characters (found 105). 98

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 224). 94
 Error sizes LineLength Line is longer than 80 characters (found 83). 98
 Error sizes LineLength Line is longer than 80 characters (found 154). 101
 Error sizes LineLength Line is longer than 80 characters (found 176). 105
 Error sizes LineLength Line is longer than 80 characters (found 178). 110
 Error sizes LineLength Line is longer than 80 characters (found 82). 111
 Error sizes LineLength Line is longer than 80 characters (found 92). 112
 Error sizes LineLength Line is longer than 80 characters (found 109). 113
 Error sizes LineLength Line is longer than 80 characters (found 105). 114
 Error sizes LineLength Line is longer than 80 characters (found 102). 117
 Error sizes LineLength Line is longer than 80 characters (found 92). 120
 Error sizes LineLength Line is longer than 80 characters (found 195). 122
 Error sizes LineLength Line is longer than 80 characters (found 147). 124
 Error sizes LineLength Line is longer than 80 characters (found 277). 125
 Error sizes LineLength Line is longer than 80 characters (found 127). 127
 Error sizes LineLength Line is longer than 80 characters (found 111). 130
 Error sizes LineLength Line is longer than 80 characters (found 117). 132
 Error sizes LineLength Line is longer than 80 characters (found 176). 138
 Error sizes LineLength Line is longer than 80 characters (found 106). 153
 Error sizes LineLength Line is longer than 80 characters (found 103). 154
 Error sizes LineLength Line is longer than 80 characters (found 119). 155
 Error sizes LineLength Line is longer than 80 characters (found 253). 157
 Error sizes LineLength Line is longer than 80 characters (found 97). 160
 Error sizes LineLength Line is longer than 80 characters (found 136). 169
 Error sizes LineLength Line is longer than 80 characters (found 162). 173
 Error sizes LineLength Line is longer than 80 characters (found 149). 176

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