You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by rz...@apache.org on 2022/04/17 06:11:19 UTC

[tomee-patch-plugin] branch master updated: Updates Javadoc

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

rzo1 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee-patch-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new 4f1eefe  Updates Javadoc
4f1eefe is described below

commit 4f1eefef33928e8db924ac31cdb7182c178ca7af
Author: Richard Zowalla <ri...@hs-heilbronn.de>
AuthorDate: Sun Apr 17 08:11:11 2022 +0200

    Updates Javadoc
---
 .../src/main/java/org/apache/tomee/patch/plugin/PatchMojo.java   | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/tomee-patch-plugin/src/main/java/org/apache/tomee/patch/plugin/PatchMojo.java b/tomee-patch-plugin/src/main/java/org/apache/tomee/patch/plugin/PatchMojo.java
index bb97aef..72132c8 100644
--- a/tomee-patch-plugin/src/main/java/org/apache/tomee/patch/plugin/PatchMojo.java
+++ b/tomee-patch-plugin/src/main/java/org/apache/tomee/patch/plugin/PatchMojo.java
@@ -189,17 +189,20 @@ public class PatchMojo extends AbstractMojo {
     @Parameter(defaultValue = "false")
     private Boolean transformSources;
 
+    /**
+     * Attach created *.tar.gz files as artifacts. Only works if {@code createTarGz} is set to {@code true}.
+     */
     @Parameter(defaultValue = "false")
     private Boolean attach;
 
     /**
-     * Sets the executable of the compiler to use when fork is <code>true</code>.
+     * Sets the executable of the compiler to use when fork is {@code true}.
      */
     @Parameter(property = "maven.compiler.executable")
     private String executable;
 
     /**
-     * Version of the compiler to use, ex. "1.3", "1.5", if fork is set to <code>true</code>.
+     * Version of the compiler to use, ex. "1.3", "1.5", if fork is set to {@code true}.
      */
     @Parameter(property = "maven.compiler.compilerVersion")
     private String compilerVersion;
@@ -217,7 +220,7 @@ public class PatchMojo extends AbstractMojo {
     private File buildDirectory;
 
     /**
-     * The directory where we will extract the zips being patched so we can compile the
+     * The directory where we will extract the zips being patched, so we can compile the
      * patch source against the jars contained within.
      */
     @Parameter(defaultValue = "${project.build.directory}/patch-classpath", required = true)