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-verifier-plugin.git
The following commit(s) were added to refs/heads/master by this push: new 32fa2be [MVERIFIER-45] Require Maven 3.6.3+ 32fa2be is described below commit 32fa2be574b741af085c4ab460f5faed1b7fe3df Author: Sylwester Lachiewicz <slachiew...@apache.org> AuthorDate: Tue Jan 14 19:40:29 2025 +0100 [MVERIFIER-45] Require Maven 3.6.3+ --- pom.xml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/pom.xml b/pom.xml index dbed82c..7dc2b2b 100644 --- a/pom.xml +++ b/pom.xml @@ -34,7 +34,7 @@ under the License. <description>Assists in integration testing by means of evaluating success/error conditions read from a configuration file.</description> <prerequisites> - <maven>${mavenVersion}</maven> + <maven>3.6.3</maven> </prerequisites> <scm> @@ -49,7 +49,7 @@ under the License. </issueManagement> <ciManagement> <system>Jenkins</system> - <url>https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-verifier-plugin/</url> + <url>https://ci-maven.apache.org/job/Maven/job/maven-box/job/maven-verifier-plugin/</url> </ciManagement> <distributionManagement> <site> @@ -59,8 +59,8 @@ under the License. </distributionManagement> <properties> - <mavenVersion>3.0</mavenVersion> <javaVersion>8</javaVersion> + <mavenVersion>3.9.9</mavenVersion> <project.build.outputTimestamp>2020-04-07T21:04:00Z</project.build.outputTimestamp> </properties> @@ -69,6 +69,7 @@ under the License. <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>${mavenVersion}</version> + <scope>provided</scope> </dependency> <!-- dependencies to annotations --> @@ -81,13 +82,16 @@ under the License. <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> - <version>4.13.1</version> + <version>4.13.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> - <version>3.3.0</version> + </dependency> + <dependency> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-xml</artifactId> </dependency> </dependencies>