This is an automated email from the ASF dual-hosted git repository. elharo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-dependency-plugin.git
The following commit(s) were added to refs/heads/master by this push: new 64fa778f Small Javadoc clarifications (#533) 64fa778f is described below commit 64fa778f60c07e6db455b0cbd4f9ad619515318d Author: Elliotte Rusty Harold <elh...@users.noreply.github.com> AuthorDate: Fri May 30 17:39:33 2025 +0000 Small Javadoc clarifications (#533) --- .../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>