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

elharo pushed a commit to branch clean
in repository https://gitbox.apache.org/repos/asf/maven-ear-plugin.git


The following commit(s) were added to refs/heads/clean by this push:
     new 636b28f  better javadoc
636b28f is described below

commit 636b28f51091e1e86fb46de7ff44b343ada833d8
Author: Elliotte Rusty Harold <elh...@ibiblio.org>
AuthorDate: Mon Nov 18 09:11:48 2024 -0500

    better javadoc
---
 .../java/org/apache/maven/plugins/ear/AbstractEarMojo.java   | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/src/main/java/org/apache/maven/plugins/ear/AbstractEarMojo.java 
b/src/main/java/org/apache/maven/plugins/ear/AbstractEarMojo.java
index 01004c5..375c529 100644
--- a/src/main/java/org/apache/maven/plugins/ear/AbstractEarMojo.java
+++ b/src/main/java/org/apache/maven/plugins/ear/AbstractEarMojo.java
@@ -116,7 +116,7 @@ public abstract class AbstractEarMojo extends AbstractMojo {
     /**
      * The file name mapping to use for all dependencies included in the EAR 
file. The mapping between artifacts and the
      * file names which is used within the EAR file.
-     * Details see
+     * See
      * <a href="./examples/customize-file-name-mapping.html">Customizing The 
File Name Mapping</a>.
      *
      * @since 3.0.0
@@ -134,17 +134,13 @@ public abstract class AbstractEarMojo extends 
AbstractMojo {
 
     /**
      * The JBoss specific configuration.
-     *
-     * @parameter
      */
     @Parameter
     private PlexusConfiguration jboss;
 
     /**
-     * The id to use to define the main artifact (e.g. the artifact without a 
classifier) when there is multiple
+     * The id to use to define the main artifact (e.g. the artifact without a 
classifier) when there are multiple
      * candidates.
-     *
-     * @parameter
      */
     @Parameter
     private String mainArtifactId = "none";
@@ -254,7 +250,7 @@ public abstract class AbstractEarMojo extends AbstractMojo {
     }
 
     /**
-     * @return The list of {@link #earModules}. This corresponds to modules 
needed at runtime.
+     * @return the list of {@link #earModules}. This corresponds to modules 
needed at runtime.
      */
     protected List<EarModule> getModules() {
         if (earModules == null) {
@@ -264,7 +260,7 @@ public abstract class AbstractEarMojo extends AbstractMojo {
     }
 
     /**
-     * @return The list of {@link #allEarModules}. This corresponds to all 
modules (provided + compile + runtime).
+     * @return the list of {@link #allEarModules}. This corresponds to all 
modules (provided + compile + runtime).
      */
     protected List<EarModule> getAllEarModules() {
         if (allEarModules == null) {

Reply via email to