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-jdeps-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new f5f1b9d  Fix spelling typos (#76)
f5f1b9d is described below

commit f5f1b9d6bda93b2edf4340a0256322e671ec5f02
Author: Elliotte Rusty Harold <[email protected]>
AuthorDate: Sat Jan 3 18:49:53 2026 +0000

    Fix spelling typos (#76)
---
 .../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 7d50354..e83ab41 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;

Reply via email to