slawekjaranowski commented on code in PR #2300: URL: https://github.com/apache/maven/pull/2300#discussion_r2083939894
########## pom.xml: ########## @@ -799,6 +799,31 @@ under the License.</licenseText> </plugins> </pluginManagement> <plugins> + <plugin> + <groupId>org.openrewrite.maven</groupId> + <artifactId>rewrite-maven-plugin</artifactId> + <version>6.7.0</version> + <configuration> + <activeRecipes> + <recipe>org.openrewrite.staticanalysis.CodeCleanup</recipe> + </activeRecipes> + </configuration> + <dependencies> + <dependency> + <groupId>org.openrewrite.recipe</groupId> + <artifactId>rewrite-static-analysis</artifactId> + <version>2.8.0</version> + </dependency> + </dependencies> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + <version>3.6.0</version> + <configuration> + <configLocation>http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven_checks.xml</configLocation> + </configuration> + </plugin> Review Comment: we already have a checkstyle configuration in parent pom ..... and rules have a different source -- 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: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org