This is an automated email from the ASF dual-hosted git repository. elharo pushed a commit to branch dp in repository https://gitbox.apache.org/repos/asf/maven-dependency-plugin.git
commit 485064eb7e45fee849868e3924db61710c0353db Author: Elliotte Rusty Harold <elh...@ibiblio.org> AuthorDate: Fri Sep 18 13:05:24 2020 -0400 declare aether explicitly --- pom.xml | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 9c58544..78447ff 100644 --- a/pom.xml +++ b/pom.xml @@ -129,9 +129,14 @@ under the License. <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-settings</artifactId> - <version>3.1.1</version> + <version>${mavenVersion}</version> </dependency> - + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-aether-provider</artifactId> + <version>${mavenVersion}</version> + </dependency> + <!-- reporting --> <dependency> <groupId>org.apache.maven.reporting</groupId> @@ -260,10 +265,21 @@ under the License. <dependency> <groupId>org.eclipse.aether</groupId> + <artifactId>aether-api</artifactId> + <version>0.9.0.M2</version> + </dependency> + <dependency> + <groupId>org.eclipse.aether</groupId> + <artifactId>aether-util</artifactId> + <version>0.9.0.M2</version> + </dependency> + <dependency> + <groupId>org.eclipse.aether</groupId> <artifactId>aether-connector-wagon</artifactId> <version>0.9.0.M2</version> <scope>provided</scope> </dependency> + <dependency> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-http-lightweight</artifactId>