This is an automated email from the ASF dual-hosted git repository. elharo pushed a commit to branch 3 in repository https://gitbox.apache.org/repos/asf/maven-dependency-plugin.git
commit a5fc6a3b66802b8db1c487bc49c6af0251b799af Author: Elliotte Rusty Harold <elh...@ibiblio.org> AuthorDate: Fri May 30 06:10:22 2025 -0400 Small Javadoc clarifications --- .../maven/plugins/dependency/resolvers/CollectDependenciesMojo.java | 4 ++-- .../maven/plugins/dependency/resolvers/ResolveDependenciesMojo.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/maven/plugins/dependency/resolvers/CollectDependenciesMojo.java b/src/main/java/org/apache/maven/plugins/dependency/resolvers/CollectDependenciesMojo.java index 7838d0d9..2751d171 100644 --- a/src/main/java/org/apache/maven/plugins/dependency/resolvers/CollectDependenciesMojo.java +++ b/src/main/java/org/apache/maven/plugins/dependency/resolvers/CollectDependenciesMojo.java @@ -34,8 +34,8 @@ import org.sonatype.plexus.build.incremental.BuildContext; /** * <p> - * Goal that collects the project dependencies from the repository. This goal requires Maven 3.0 or higher to function - * because it uses "requiresDependencyCollection". This means that it lists the groupId:artifactId:version information + * Goal that collects the project dependencies from the repository. This goal + * uses "requiresDependencyCollection" to list the groupId:artifactId:version information * by downloading the pom files without downloading the actual artifacts such as jar files. * </p> * <p> diff --git a/src/main/java/org/apache/maven/plugins/dependency/resolvers/ResolveDependenciesMojo.java b/src/main/java/org/apache/maven/plugins/dependency/resolvers/ResolveDependenciesMojo.java index d326bda2..4402b489 100644 --- a/src/main/java/org/apache/maven/plugins/dependency/resolvers/ResolveDependenciesMojo.java +++ b/src/main/java/org/apache/maven/plugins/dependency/resolvers/ResolveDependenciesMojo.java @@ -56,7 +56,7 @@ import org.apache.maven.shared.utils.logging.MessageUtils; import org.sonatype.plexus.build.incremental.BuildContext; /** - * Goal that resolves the project dependencies from the repository. When using this goal while running on Java 9 the + * Goal that resolves the project dependencies from the repository. When running on Java 9, the * module names will be visible as well. * * @author <a href="mailto:bri...@apache.org">Brian Fox</a>