This is an automated email from the ASF dual-hosted git repository. cstamas pushed a commit to branch sanitize-dependencies in repository https://gitbox.apache.org/repos/asf/maven-common-artifact-filters.git
commit ba6713b93f6b966521841f04bd9ab66c907547b8 Author: Tamas Cservenak <[email protected]> AuthorDate: Thu Apr 29 19:08:56 2021 +0200 Sanitize dependencies Double artifacts (org.eclipse.aether vs maven-resolver) and other. Removed them and it just works. Reordered properties, removed superfluous dependencies. --- pom.xml | 32 ++++++++++++-------------------- 1 file changed, 12 insertions(+), 20 deletions(-) diff --git a/pom.xml b/pom.xml index de4d1fa..fa6cb42 100644 --- a/pom.xml +++ b/pom.xml @@ -55,9 +55,9 @@ </distributionManagement> <properties> - <maven.version>3.1.1</maven.version> <javaVersion>7</javaVersion> - <aether.version>0.9.0.M2</aether.version> + <maven.version>3.1.1</maven.version> + <resolver.version>1.6.2</resolver.version> <surefire.version>2.22.2</surefire.version> <checkstyle.violation.ignore>MethodLength</checkstyle.violation.ignore> <project.build.outputTimestamp>2021-02-14T00:03:59Z</project.build.outputTimestamp> @@ -98,59 +98,51 @@ <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> <version>${maven.version}</version> + <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-model</artifactId> <version>${maven.version}</version> + <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>${maven.version}</version> + <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>${maven.version}</version> + <scope>provided</scope> </dependency> + <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.6</version> </dependency> - <dependency> - <groupId>org.eclipse.aether</groupId> - <artifactId>aether-api</artifactId> - <version>${aether.version}</version> - </dependency> - <dependency> - <groupId>org.eclipse.aether</groupId> - <artifactId>aether-util</artifactId> - <version>${aether.version}</version> - </dependency> - <dependency> - <groupId>org.eclipse.sisu</groupId> - <artifactId>org.eclipse.sisu.plexus</artifactId> - <version>0.0.0.M5</version> - </dependency> + + <dependency> <groupId>org.apache.maven.resolver</groupId> <artifactId>maven-resolver-api</artifactId> - <version>1.4.2</version> + <version>${resolver.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.resolver</groupId> <artifactId>maven-resolver-util</artifactId> - <version>1.4.2</version> + <version>${resolver.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-shared-utils</artifactId> - <version>3.3.3</version> + <version>3.3.5-SNAPSHOT</version> </dependency> <dependency>
