You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by cs...@apache.org on 2022/11/13 14:19:56 UTC

[maven-resolver] branch master updated: [MRESOLVER-292] Fix configuration name in documentation to match with actual name (#217)

This is an automated email from the ASF dual-hosted git repository.

cstamas pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-resolver.git


The following commit(s) were added to refs/heads/master by this push:
     new e1b5ab91 [MRESOLVER-292] Fix configuration name in documentation to match with actual name (#217)
e1b5ab91 is described below

commit e1b5ab91cf9cd97cfc7f6c808a9f07490dcede5d
Author: Eric Cai <we...@ebay.com>
AuthorDate: Sun Nov 13 22:19:51 2022 +0800

    [MRESOLVER-292] Fix configuration name in documentation to match with actual name (#217)
    
    The doco contains the corract configuration name, while code the wrong one.
    
    ---
    
    https://issues.apache.org/jira/browse/MRESOLVER-292
---
 .../aether/internal/impl/collect/DefaultDependencyCollector.java        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/maven-resolver-impl/src/main/java/org/eclipse/aether/internal/impl/collect/DefaultDependencyCollector.java b/maven-resolver-impl/src/main/java/org/eclipse/aether/internal/impl/collect/DefaultDependencyCollector.java
index f7f6ea26..2ffe7b09 100644
--- a/maven-resolver-impl/src/main/java/org/eclipse/aether/internal/impl/collect/DefaultDependencyCollector.java
+++ b/maven-resolver-impl/src/main/java/org/eclipse/aether/internal/impl/collect/DefaultDependencyCollector.java
@@ -47,7 +47,7 @@ import static java.util.Objects.requireNonNull;
 public class DefaultDependencyCollector
         implements DependencyCollector, Service
 {
-    private static final String CONFIG_PROP_COLLECTOR_IMPL = "aether.collector.impl";
+    private static final String CONFIG_PROP_COLLECTOR_IMPL = "aether.dependencyCollector.impl";
 
     private static final String DEFAULT_COLLECTOR_IMPL = DfDependencyCollector.NAME;