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/01/31 12:04:29 UTC

[maven-checkstyle-plugin] branch MCHECKSTYLE-410 created (now ee4d28c)

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

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


      at ee4d28c  [MCHECKSTYLE-410] Require Maven 3.2.5+

This branch includes the following new commits:

     new ee4d28c  [MCHECKSTYLE-410] Require Maven 3.2.5+

The 1 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.


[maven-checkstyle-plugin] 01/01: [MCHECKSTYLE-410] Require Maven 3.2.5+

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

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

commit ee4d28c331c579ed806856b584fa5a6794fba189
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Mon Jan 31 13:04:07 2022 +0100

    [MCHECKSTYLE-410] Require Maven 3.2.5+
---
 pom.xml | 20 +++++++++++++++++---
 1 file changed, 17 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 54444e7..0256970 100644
--- a/pom.xml
+++ b/pom.xml
@@ -64,7 +64,7 @@ under the License.
 
   <properties>
     <javaVersion>8</javaVersion>
-    <mavenVersion>3.1.1</mavenVersion>
+    <mavenVersion>3.2.5</mavenVersion>
     <checkstyleVersion>9.3</checkstyleVersion>
     <doxiaVersion>1.11.1</doxiaVersion>
     <sitePluginVersion>3.9.1</sitePluginVersion>
@@ -125,7 +125,8 @@ under the License.
       </exclusions>
     </dependency>
 
-    <!-- shared to help doxia work with the old version of maven -->
+<!--
+    &lt;!&ndash; shared to help doxia work with the old version of maven &ndash;&gt;
     <dependency>
       <groupId>org.eclipse.sisu</groupId>
       <artifactId>org.eclipse.sisu.plexus</artifactId>
@@ -137,12 +138,19 @@ under the License.
       <version>3.2.5</version>
       <classifier>no_aop</classifier>
     </dependency>
+-->
 
     <!-- doxia -->
     <dependency>
       <groupId>org.apache.maven.doxia</groupId>
       <artifactId>doxia-site-renderer</artifactId>
       <version>${doxiaVersion}</version>
+      <exclusions>
+        <exclusion>
+          <artifactId>plexus-container-default</artifactId>
+          <groupId>org.codehaus.plexus</groupId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.maven.doxia</groupId>
@@ -159,6 +167,12 @@ under the License.
       <groupId>org.codehaus.plexus</groupId>
       <artifactId>plexus-resources</artifactId>
       <version>1.1.0</version>
+      <exclusions>
+        <exclusion>
+          <artifactId>plexus-container-default</artifactId>
+          <groupId>org.codehaus.plexus</groupId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.codehaus.plexus</groupId>
@@ -214,7 +228,7 @@ under the License.
     <dependency>
       <groupId>org.apache.maven.plugin-testing</groupId>
       <artifactId>maven-plugin-testing-harness</artifactId>
-      <version>3.1.0</version>
+      <version>3.3.0</version>
       <scope>test</scope>
     </dependency>
     <dependency>