This is an automated email from the ASF dual-hosted git repository. slachiewicz pushed a commit to branch MJARSIGNER-65 in repository https://gitbox.apache.org/repos/asf/maven-jarsigner-plugin.git
commit e1abf6e25568951575ce4dcc436c0177b81cc4d7 Author: Sylwester Lachiewicz <[email protected]> AuthorDate: Wed May 24 17:33:55 2023 +0200 [MJARSIGNER-67] Update Maven minimum to 3.2.5 --- pom.xml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8c3e423..4185ef7 100644 --- a/pom.xml +++ b/pom.xml @@ -71,7 +71,7 @@ under the License. </distributionManagement> <properties> - <mavenVersion>3.0</mavenVersion> + <mavenVersion>3.2.5</mavenVersion> <javaVersion>8</javaVersion> <project.build.outputTimestamp>2020-04-07T21:04:00Z</project.build.outputTimestamp> </properties> @@ -90,21 +90,25 @@ under the License. <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>${mavenVersion}</version> + <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>${mavenVersion}</version> + <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> <version>${mavenVersion}</version> + <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-settings</artifactId> <version>${mavenVersion}</version> + <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId>
