This is an automated email from the ASF dual-hosted git repository. sjaranowski pushed a commit to branch MCLEAN-118 in repository https://gitbox.apache.org/repos/asf/maven-clean-plugin.git
commit 0d4017d5917751c98853f737ecc1e2f877eb2443 Author: Slawomir Jaranowski <[email protected]> AuthorDate: Sun Apr 14 12:15:13 2024 +0200 [MCLEAN-118] Require Maven 3.6.3 --- pom.xml | 8 ++++---- src/site/apt/examples/delete_additional_files.apt.vm | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pom.xml b/pom.xml index d30f050..283671c 100644 --- a/pom.xml +++ b/pom.xml @@ -28,7 +28,7 @@ under the License. </parent> <artifactId>maven-clean-plugin</artifactId> - <version>3.3.3-SNAPSHOT</version> + <version>3.4.0-SNAPSHOT</version> <packaging>maven-plugin</packaging> <name>Apache Maven Clean Plugin</name> @@ -61,7 +61,9 @@ under the License. </distributionManagement> <properties> - <mavenVersion>3.2.5</mavenVersion> + <mavenVersion>3.6.3</mavenVersion> + <!-- TODO remove with next parent --> + <version.maven-plugin-tools>3.12.0</version.maven-plugin-tools> <project.build.outputTimestamp>2023-10-23T06:00:49Z</project.build.outputTimestamp> </properties> @@ -75,7 +77,6 @@ under the License. <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> - <version>4.0.0</version> </dependency> <!-- dependencies to annotations --> @@ -95,7 +96,6 @@ under the License. <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-xml</artifactId> - <version>3.0.0</version> <scope>test</scope> </dependency> <dependency> diff --git a/src/site/apt/examples/delete_additional_files.apt.vm b/src/site/apt/examples/delete_additional_files.apt.vm index 84ed079..0fa768c 100644 --- a/src/site/apt/examples/delete_additional_files.apt.vm +++ b/src/site/apt/examples/delete_additional_files.apt.vm @@ -68,7 +68,7 @@ Delete Additional Files Not Exposed to Maven is equivalent to: +-------- - <directory>${basedir}/some/relative/path</directory> + <directory>${project.basedir}/some/relative/path</directory> +-------- You could also define file set rules in a parent POM. In this case, the clean plugin adds the subproject
