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:06:51 UTC

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

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

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

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

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

diff --git a/pom.xml b/pom.xml
index ca53625..8dfb3f1 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.1.2</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>