elharo opened a new pull request, #1118:
URL: https://github.com/apache/maven-compiler-plugin/pull/1118

   ## Problem
   
   Since #1091 (MCOMPILER-578) the file 
`src/main/java/org/apache/maven/plugin/compiler/AbstractCompilerMojo.java` grew 
to 2063 lines, exceeding the FileLength check (max 2000). The default 
Checkstyle ruleset pulls in `FileLength` with no overridable maximum, so a 
plain `mvn checkstyle:check` fails on the 3.x branch.
   
   ## Change
   
   Trims `AbstractCompilerMojo.java` from 2063 to 1990 lines with **no 
behavioral change**:
   - collapse short `@Parameter` / `@Inject` field Javadocs to one line
   - drop `@param`/`@return` tags that merely repeat argument names on private 
methods
   - condense background banner comments and low-value one-line comments
   - tighten verbose method Javadocs
   
   ## Verification
   - `mvn checkstyle:check` -> 0 violations
   - `mvn install -DskipTests` -> BUILD SUCCESS (compiles, javadoc generation 
passes)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to