You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2022/04/01 20:54:45 UTC

[maven-clean-plugin] branch MCLEAN-98 updated (d4e272e -> 81b7e24)

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

khmarbaise pushed a change to branch MCLEAN-98
in repository https://gitbox.apache.org/repos/asf/maven-clean-plugin.git.


 discard d4e272e  [MCLEAN-98] - Upgrade maven-plugin parent to 35  - Upgrade Maven Version to 3.2.5  - Upgrade Maven Plugin tools to 3.6.4  - Changed maven-plugin-api scope to provided  - Upgrade maven-plugin-testing-harness to 3.3.0
     add bfd5c3b  [MCLEAN-94] Update plugin dependencies
     add ab095ac  [MCLEAN-96] Require Maven 3.2.5+
     add de77b58  [MCLEAN-97] Require Java 8
     add 11c8c87  [MCLEAN-95] Add a fast clean option (#6)
     add ed958d4  Shared GitHub actions v2
     new 81b7e24  [MCLEAN-98] - Upgrade maven-plugin parent to 35  - Upgrade Maven Plugin tools to 3.6.4  - Changed maven-plugin-api scope to provided  - Upgrade maven-plugin-testing-harness to 3.3.0

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (d4e272e)
            \
             N -- N -- N   refs/heads/MCLEAN-98 (81b7e24)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

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.


Summary of changes:
 .github/workflows/{maven.yml => maven-verify.yml}  |   7 +-
 pom.xml                                            |   4 +-
 .../org/apache/maven/plugins/clean/CleanMojo.java  |  81 ++++-
 .../org/apache/maven/plugins/clean/Cleaner.java    | 345 +++++++++++++++++++--
 .../apache/maven/plugins/clean/CleanMojoTest.java  |  21 +-
 .../java/org/apache/maven/plugins/clean/Utils.java |  15 +-
 6 files changed, 416 insertions(+), 57 deletions(-)
 rename .github/workflows/{maven.yml => maven-verify.yml} (92%)

[maven-clean-plugin] 01/01: [MCLEAN-98] - Upgrade maven-plugin parent to 35 - Upgrade Maven Plugin tools to 3.6.4 - Changed maven-plugin-api scope to provided - Upgrade maven-plugin-testing-harness to 3.3.0

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

khmarbaise pushed a commit to branch MCLEAN-98
in repository https://gitbox.apache.org/repos/asf/maven-clean-plugin.git

commit 81b7e248d2c3a529498884346272cd7105305f3e
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Fri Apr 1 22:11:11 2022 +0200

    [MCLEAN-98] - Upgrade maven-plugin parent to 35
     - Upgrade Maven Plugin tools to 3.6.4
     - Changed maven-plugin-api scope to provided
     - Upgrade maven-plugin-testing-harness to 3.3.0
---
 pom.xml | 57 ++-------------------------------------------------------
 1 file changed, 2 insertions(+), 55 deletions(-)

diff --git a/pom.xml b/pom.xml
index 4e52070..a91abfb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -25,7 +25,7 @@ under the License.
   <parent>
     <groupId>org.apache.maven.plugins</groupId>
     <artifactId>maven-plugins</artifactId>
-    <version>34</version>
+    <version>35</version>
     <relativePath/>
   </parent>
 
@@ -68,7 +68,7 @@ under the License.
     <mavenVersion>3.2.5</mavenVersion>
     <javaVersion>8</javaVersion>
     <surefire.version>2.22.2</surefire.version>
-    <mavenPluginToolsVersion>3.6.2</mavenPluginToolsVersion>
+    <mavenPluginToolsVersion>3.6.4</mavenPluginToolsVersion>
     <project.build.outputTimestamp>2020-04-07T21:04:00Z</project.build.outputTimestamp>
   </properties>
 
@@ -98,12 +98,6 @@ under the License.
       <artifactId>maven-plugin-testing-harness</artifactId>
       <version>3.3.0</version>
       <scope>test</scope>
-      <exclusions>
-        <exclusion>
-          <groupId>org.codehaus.plexus</groupId>
-          <artifactId>plexus-container-default</artifactId>
-        </exclusion>
-      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.maven</groupId>
@@ -125,53 +119,6 @@ under the License.
     </dependency>
   </dependencies>
 
-  <build>
-    <pluginManagement>
-      <plugins>
-        <!-- remove with next parent upgrade -->
-        <plugin>
-          <artifactId>maven-project-info-reports-plugin</artifactId>
-          <version>3.1.2</version>
-        </plugin>
-        <plugin>
-          <artifactId>maven-enforcer-plugin</artifactId>
-          <version>3.0.0</version>
-          <dependencies>
-            <dependency>
-              <groupId>org.codehaus.mojo</groupId>
-              <artifactId>extra-enforcer-rules</artifactId>
-              <version>1.5.1</version>
-            </dependency>
-          </dependencies>
-        </plugin>
-       <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-javadoc-plugin</artifactId>
-          <version>3.3.1</version>
-          <configuration> <!--  remove after MPOM-269 -->
-            <tagletArtifacts combine.self="override"/>
-          </configuration>
-        </plugin>
-        <plugin>
-          <artifactId>maven-site-plugin</artifactId>
-          <version>3.10.0</version>
-        </plugin>
-      </plugins>
-    </pluginManagement>
-    <plugins>
-      <plugin><!-- remove with next parent upgrade -->
-        <artifactId>maven-enforcer-plugin</artifactId>
-        <version>3.0.0</version>
-        <dependencies>
-          <dependency>
-            <groupId>org.codehaus.mojo</groupId>
-            <artifactId>extra-enforcer-rules</artifactId>
-            <version>1.5.1</version>
-          </dependency>
-        </dependencies>
-      </plugin>
-    </plugins>
-  </build>
   <profiles>
     <profile>
       <id>run-its</id>