This is an automated email from the ASF dual-hosted git repository. slachiewicz pushed a commit to branch MSHARED-1123 in repository https://gitbox.apache.org/repos/asf/maven-shared-incremental.git
commit 1ea187bcba807f8f5f1447239a34725ceff242f6 Author: Sylwester Lachiewicz <[email protected]> AuthorDate: Mon Aug 22 21:18:35 2022 +0200 [MSHARED-1123] Require Maven 3.2.5+ --- pom.xml | 99 ++++++++++++++++++++++++++++++----------------------------------- 1 file changed, 45 insertions(+), 54 deletions(-) diff --git a/pom.xml b/pom.xml index 4015b4e..e056901 100644 --- a/pom.xml +++ b/pom.xml @@ -23,7 +23,7 @@ <groupId>org.apache.maven.shared</groupId> <artifactId>maven-shared-components</artifactId> <version>34</version> - <relativePath></relativePath> + <relativePath/> </parent> <artifactId>maven-shared-incremental</artifactId> @@ -43,11 +43,11 @@ </scm> <issueManagement> <system>jira</system> - <url>https://issues.apache.org/jira/browse/MSHARED/component/12326453</url> + <url>https://issues.apache.org/jira/issues/?jql=project+%3D+MSHARED+AND+component+%3D+maven-shared-incremental</url> </issueManagement> <ciManagement> <system>Jenkins</system> - <url>https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-shared-incremental/</url> + <url>https://ci-maven.apache.org/job/Maven/job/maven-box/job/maven-shared-incremental/</url> </ciManagement> <distributionManagement> <site> @@ -57,94 +57,85 @@ </distributionManagement> <properties> - <mavenVersion>2.2.1</mavenVersion> + <mavenVersion>3.2.5</mavenVersion> <javaVersion>8</javaVersion> <project.build.outputTimestamp>2020-04-04T09:03:59Z</project.build.outputTimestamp> </properties> <dependencies> - <dependency> - <groupId>org.apache.maven</groupId> - <artifactId>maven-plugin-api</artifactId> - <version>${mavenVersion}</version> - </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>${mavenVersion}</version> <exclusions> <exclusion> - <groupId>org.apache.maven.reporting</groupId> - <artifactId>maven-reporting-api</artifactId> + <artifactId>aether-api</artifactId> + <groupId>org.eclipse.aether</groupId> + </exclusion> + <exclusion> + <artifactId>aether-impl</artifactId> + <groupId>org.eclipse.aether</groupId> </exclusion> <exclusion> - <groupId>org.apache.maven.wagon</groupId> - <artifactId>wagon-file</artifactId> + <artifactId>aether-util</artifactId> + <groupId>org.eclipse.aether</groupId> </exclusion> <exclusion> - <groupId>org.apache.maven.wagon</groupId> - <artifactId>wagon-http-lightweight</artifactId> + <artifactId>maven-aether-provider</artifactId> + <groupId>org.apache.maven</groupId> </exclusion> <exclusion> - <groupId>org.apache.maven.wagon</groupId> - <artifactId>wagon-ssh</artifactId> + <artifactId>maven-repository-metadata</artifactId> + <groupId>org.apache.maven</groupId> </exclusion> <exclusion> - <groupId>org.apache.maven.wagon</groupId> - <artifactId>wagon-ssh-external</artifactId> + <artifactId>maven-settings</artifactId> + <groupId>org.apache.maven</groupId> </exclusion> <exclusion> - <groupId>commons-cli</groupId> - <artifactId>commons-cli</artifactId> + <artifactId>maven-settings-builder</artifactId> + <groupId>org.apache.maven</groupId> </exclusion> <exclusion> - <groupId>classworlds</groupId> - <artifactId>classworlds</artifactId> + <artifactId>plexus-sec-dispatcher</artifactId> + <groupId>org.sonatype.plexus</groupId> </exclusion> <exclusion> + <artifactId>sisu-guice</artifactId> + <groupId>org.sonatype.sisu</groupId> + </exclusion> + <exclusion> + <artifactId>maven-model-builder</artifactId> + <groupId>org.apache.maven</groupId> + </exclusion> + <exclusion> + <artifactId>plexus-classworlds</artifactId> <groupId>org.codehaus.plexus</groupId> - <artifactId>plexus-container-default</artifactId> </exclusion> <exclusion> + <artifactId>plexus-component-annotations</artifactId> <groupId>org.codehaus.plexus</groupId> - <artifactId>plexus-interactivity-api</artifactId> + </exclusion> + <exclusion> + <artifactId>plexus-interpolation</artifactId> + <groupId>org.codehaus.plexus</groupId> + </exclusion> + <exclusion> + <artifactId>plexus-utils</artifactId> + <groupId>org.codehaus.plexus</groupId> + </exclusion> + <exclusion> + <artifactId>maven-artifact</artifactId> + <groupId>org.apache.maven</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-shared-utils</artifactId> - <version>0.7</version> + <version>3.3.3</version> </dependency> - <dependency> - <groupId>org.codehaus.plexus</groupId> - <artifactId>plexus-component-annotations</artifactId> - <version>1.6</version> - </dependency> - <dependency> - <groupId>org.codehaus.plexus</groupId> - <artifactId>plexus-component-api</artifactId> - <version>1.0-alpha-16</version> - <scope>provided</scope> - </dependency> </dependencies> - <build> - <plugins> - <plugin> - <groupId>org.codehaus.plexus</groupId> - <artifactId>plexus-component-metadata</artifactId> - <version>1.7.1</version> - <executions> - <execution> - <goals> - <goal>generate-metadata</goal> - </goals> - </execution> - </executions> - </plugin> - </plugins> - </build> - </project>
