This is an automated email from the ASF dual-hosted git repository. slachiewicz pushed a commit to branch MSHARED-944 in repository https://gitbox.apache.org/repos/asf/maven-dependency-analyzer.git
commit bd973fda797c1b722771c1f075d998d6eb883209 Author: Sylwester Lachiewicz <[email protected]> AuthorDate: Sat Dec 26 23:11:43 2020 +0100 [MSHARED-944] Drop support for Maven 3.0. Require 3.1.1 --- pom.xml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index 48c1c1e..6f5ceda 100644 --- a/pom.xml +++ b/pom.xml @@ -59,7 +59,7 @@ </distributionManagement> <properties> - <mavenVersion>2.0.5</mavenVersion> + <mavenVersion>3.1.1</mavenVersion> <surefire.version>2.22.2</surefire.version> <javaVersion>7</javaVersion> <project.build.outputTimestamp>2020-08-05T13:26:53Z</project.build.outputTimestamp> @@ -99,7 +99,7 @@ </dependency> <dependency> <groupId>org.apache.maven</groupId> - <artifactId>maven-project</artifactId> + <artifactId>maven-core</artifactId> <version>${mavenVersion}</version> </dependency> <dependency> @@ -112,7 +112,7 @@ <artifactId>commons-io</artifactId> <version>2.6</version> </dependency> - + <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> @@ -121,7 +121,13 @@ <dependency> <groupId>org.apache.maven.plugin-testing</groupId> <artifactId>maven-plugin-testing-tools</artifactId> - <version>1.3</version> + <version>3.1.0</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-compat</artifactId> + <version>${mavenVersion}</version> <scope>test</scope> </dependency> <dependency>
