You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sl...@apache.org on 2022/09/26 21:09:44 UTC

[maven-parent] 01/01: Bump checkstyle plugin to 3.2.0 (Checkstyle 9.3)

This is an automated email from the ASF dual-hosted git repository.

slachiewicz pushed a commit to branch checkstyle32
in repository https://gitbox.apache.org/repos/asf/maven-parent.git

commit ef46d6202069e485a64b8d6008a89584b86a1c16
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Mon Apr 18 17:40:57 2022 +0200

    Bump checkstyle plugin to 3.2.0 (Checkstyle 9.3)
---
 pom.xml | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index ca53625..81d9886 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1039,7 +1039,7 @@ under the License.
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-checkstyle-plugin</artifactId>
-          <version>3.0.0</version>
+          <version>3.2.0</version>
           <configuration>
             <configLocation>config/maven_checks.xml</configLocation>
             <headerLocation>config/maven-header.txt</headerLocation>
@@ -1052,11 +1052,16 @@ under the License.
             </testSourceDirectories>
           </configuration>
           <dependencies>
+            <dependency>
+              <groupId>com.puppycrawl.tools</groupId>
+              <artifactId>checkstyle</artifactId>
+              <version>9.3</version><!-- 10.x requires Java 11-->
+            </dependency>
             <!-- MCHECKSTYLE-327: the maven_checks.xml was moved to a shared project -->
             <dependency>
               <groupId>org.apache.maven.shared</groupId>
               <artifactId>maven-shared-resources</artifactId>
-              <version>2</version>
+              <version>4</version>
             </dependency>
           </dependencies>
         </plugin>