This is an automated email from the ASF dual-hosted git repository. elharo pushed a commit to branch spell in repository https://gitbox.apache.org/repos/asf/maven-jdeps-plugin.git
commit 95498998e2ab19be3cdb219fdbb01736aa150e52 Author: Elliotte Rusty Harold <[email protected]> AuthorDate: Mon Dec 29 08:34:53 2025 -0500 Fix spelling typos --- .../org/apache/maven/plugins/jdeps/AbstractJDepsMojo.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/org/apache/maven/plugins/jdeps/AbstractJDepsMojo.java b/src/main/java/org/apache/maven/plugins/jdeps/AbstractJDepsMojo.java index 177af6c..6df09e5 100644 --- a/src/main/java/org/apache/maven/plugins/jdeps/AbstractJDepsMojo.java +++ b/src/main/java/org/apache/maven/plugins/jdeps/AbstractJDepsMojo.java @@ -142,7 +142,7 @@ public abstract class AbstractJDepsMojo extends AbstractMojo { private String verbose; /** - * Finds dependences matching the specified package name. + * Finds dependencies matching the specified package name. * * @since 3.1.1. */ @@ -151,27 +151,27 @@ public abstract class AbstractJDepsMojo extends AbstractMojo { /** * Restrict analysis to classes matching pattern. This option filters the list of classes to be analyzed. It can be - * used together with <code>-p</code> and <code>-e</code> which apply pattern to the dependences + * used together with <code>-p</code> and <code>-e</code> which apply pattern to the dependencies. */ @Parameter(property = "jdeps.include") private String include; /** - * Restrict analysis to APIs i.e. dependences from the signature of public and protected members of public classes - * including field type, method parameter types, returned type, checked exception types etc + * Restrict analysis to APIs; i.e. dependencies from the signature of public and protected members of public classes + * including field type, method parameter types, returned type, checked exception types, etc. */ @Parameter(defaultValue = "false", property = "jdeps.apionly") private boolean apiOnly; /** - * Show profile or the file containing a package + * Show profile or the file containing a package. */ @Parameter(defaultValue = "false", property = "jdeps.profile") private boolean profile; /** * Recursively traverse all dependencies. The {@code -R} option implies {@code -filter:none}. If {@code -p}, - * {@code -e}, {@code -f} option is specified, only the matching dependences are analyzed. + * {@code -e}, {@code -f} option is specified, only the matching dependencies are analyzed. */ @Parameter(defaultValue = "false", property = "jdeps.recursive") private boolean recursive;
