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 2021/01/23 22:12:43 UTC

[maven-checkstyle-plugin] branch master updated (29ab795 -> a5aeeaf)

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

slachiewicz pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/maven-checkstyle-plugin.git.


    from 29ab795  [MCHECKSTYLE-392] Update historical release notes
     add 3af1ab2  [MCHECKSTYLE-400] remove .travis.yml
     add 8295569  Bump junit from 4.8.1 to 4.13.1 in /src/it/MCHECKSTYLE-163
     add b5bb87f  Bump build-helper-maven-plugin from 3.0.0 to 3.2.0
     new 6b69179  Upgrade plugins
     new a5aeeaf  Use maven-checkstyle-plugin 3.1.1

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .travis.yml                    | 33 ---------------------------------
 pom.xml                        | 26 ++++++++++++++++++++++++--
 src/it/MCHECKSTYLE-163/pom.xml |  2 +-
 3 files changed, 25 insertions(+), 36 deletions(-)
 delete mode 100644 .travis.yml


[maven-checkstyle-plugin] 01/02: Upgrade plugins

Posted by sl...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 6b691791092e3b93a3020866e594064d513a17e1
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Sat Jan 23 23:11:53 2021 +0100

    Upgrade plugins
---
 pom.xml | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 108a4aa..8b06f96 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,7 +26,7 @@ under the License.
     <artifactId>maven-plugins</artifactId>
     <groupId>org.apache.maven.plugins</groupId>
     <version>34</version>
-    <relativePath>../../pom/maven/maven-plugins/pom.xml</relativePath>
+    <relativePath />
   </parent>
 
   <artifactId>maven-checkstyle-plugin</artifactId>
@@ -69,6 +69,7 @@ under the License.
     <checkstyleVersion>8.29</checkstyleVersion>
     <doxiaVersion>1.4</doxiaVersion>
     <sitePluginVersion>3.9.0</sitePluginVersion>
+    <surefire.version>2.22.2</surefire.version>
     <project.build.outputTimestamp>2020-02-08T08:24:16Z</project.build.outputTimestamp>
   </properties>
 
@@ -267,11 +268,16 @@ under the License.
             </excludes>
           </configuration>
         </plugin>
+        <!-- remove with parent pom upgrade -->
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-project-info-reports-plugin</artifactId>
           <version>3.1.1</version>
         </plugin>
+        <plugin>
+          <artifactId>maven-enforcer-plugin</artifactId>
+          <version>3.0.0-M3</version>
+        </plugin>
       </plugins>
     </pluginManagement>
     <plugins>


[maven-checkstyle-plugin] 02/02: Use maven-checkstyle-plugin 3.1.1

Posted by sl...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit a5aeeaf532fc1bb07cc6a02dab981f79cb2ab3b2
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Sat Jan 23 23:12:08 2021 +0100

    Use maven-checkstyle-plugin 3.1.1
---
 pom.xml | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/pom.xml b/pom.xml
index 8b06f96..11d0bf5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -278,6 +278,22 @@ under the License.
           <artifactId>maven-enforcer-plugin</artifactId>
           <version>3.0.0-M3</version>
         </plugin>
+        <plugin>
+          <artifactId>maven-checkstyle-plugin</artifactId>
+          <version>3.1.1</version>
+          <dependencies>
+            <dependency>
+              <groupId>com.puppycrawl.tools</groupId>
+              <artifactId>checkstyle</artifactId>
+              <version>8.39</version>
+            </dependency>
+            <dependency>
+              <groupId>org.apache.maven.shared</groupId>
+              <artifactId>maven-shared-resources</artifactId>
+              <version>3</version>
+            </dependency>
+          </dependencies>
+        </plugin>
       </plugins>
     </pluginManagement>
     <plugins>