You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2017/09/02 21:29:59 UTC

svn commit: r1807099 - in /maven/plugins/trunk/maven-jmod-plugin/src: main/filtered-resources/META-INF/plexus/components.xml main/java/org/apache/maven/plugins/jmod/JModCreateMojo.java site/apt/index.apt.vm

Author: khmarbaise
Date: Sat Sep  2 21:29:58 2017
New Revision: 1807099

URL: http://svn.apache.org/viewvc?rev=1807099&view=rev
Log:
Fixed typos/links etc.

Modified:
    maven/plugins/trunk/maven-jmod-plugin/src/main/filtered-resources/META-INF/plexus/components.xml
    maven/plugins/trunk/maven-jmod-plugin/src/main/java/org/apache/maven/plugins/jmod/JModCreateMojo.java
    maven/plugins/trunk/maven-jmod-plugin/src/site/apt/index.apt.vm

Modified: maven/plugins/trunk/maven-jmod-plugin/src/main/filtered-resources/META-INF/plexus/components.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-jmod-plugin/src/main/filtered-resources/META-INF/plexus/components.xml?rev=1807099&r1=1807098&r2=1807099&view=diff
==============================================================================
--- maven/plugins/trunk/maven-jmod-plugin/src/main/filtered-resources/META-INF/plexus/components.xml (original)
+++ maven/plugins/trunk/maven-jmod-plugin/src/main/filtered-resources/META-INF/plexus/components.xml Sat Sep  2 21:29:58 2017
@@ -38,11 +38,11 @@
 
     <!--
       | Defining the phases with their appropriate plugins
-      ! and versions which will be executed during the 'jlink'
+      ! and versions which will be executed during the 'jmod'
       ! life cycle.
     -->
     <!--
-     | JLINK
+     | JMOD
      |-->
     <component>
       <role>org.apache.maven.lifecycle.mapping.LifecycleMapping</role>

Modified: maven/plugins/trunk/maven-jmod-plugin/src/main/java/org/apache/maven/plugins/jmod/JModCreateMojo.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-jmod-plugin/src/main/java/org/apache/maven/plugins/jmod/JModCreateMojo.java?rev=1807099&r1=1807098&r2=1807099&view=diff
==============================================================================
--- maven/plugins/trunk/maven-jmod-plugin/src/main/java/org/apache/maven/plugins/jmod/JModCreateMojo.java (original)
+++ maven/plugins/trunk/maven-jmod-plugin/src/main/java/org/apache/maven/plugins/jmod/JModCreateMojo.java Sat Sep  2 21:29:58 2017
@@ -35,7 +35,7 @@ import org.codehaus.plexus.util.FileUtil
 import org.codehaus.plexus.util.cli.Commandline;
 
 /**
- * The <code>create</code> goals is intended to create <code>jmod</code> files which can be used for later linking via
+ * The <code>create</code> goal is intended to create <code>jmod</code> files which can be used for later linking via
  * <code>maven-jlink-plugin</code>. The JMod files can not be used as usual dependencies on the classpath only in
  * relationship with maven-jlink-plugin. JMOD files can be used at compile time and link time, but not at run time.
  * 
@@ -155,9 +155,9 @@ public class JModCreateMojo
     private boolean doNotResolveByDefault;
 
     /**
-     * Define the locations of header files. The default location is <code>src/main/headerfiles</code>. Best is to put
-     * the header files into the default location. If the directories do not exist the configuration will be ignored.
-     * The given directories are relative to the project base directory.
+     * Define the locations of header files. The default location is <code>src/main/headerfiles</code>. If the the
+     * default location does not exist in the current project it will be ignored. The given directories are relative to
+     * the project base directory. If an entry is defined the definition of all locations is needed.
      * 
      * <pre>
      * &lt;headerFiles&gt;

Modified: maven/plugins/trunk/maven-jmod-plugin/src/site/apt/index.apt.vm
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-jmod-plugin/src/site/apt/index.apt.vm?rev=1807099&r1=1807098&r2=1807099&view=diff
==============================================================================
--- maven/plugins/trunk/maven-jmod-plugin/src/site/apt/index.apt.vm (original)
+++ maven/plugins/trunk/maven-jmod-plugin/src/site/apt/index.apt.vm Sat Sep  2 21:29:58 2017
@@ -34,9 +34,9 @@ ${project.name}
 
   The JMod Plugin has currently two goals:
 
-  * {{{./jmod-mojo.html}jmod:create}} Create jmod files.
+  * {{{./create-mojo.html}jmod:create}} Create jmod files.
 
-  * {{{./help-mojo.html}install:help}} displays help information on maven-jmod-plugin.
+  * {{{./help-mojo.html}jmod:help}} displays help information on maven-jmod-plugin.
 
   At the moment support for extract, list, describe does not exist. If you need such support
   please open a {{{./issue-tracking.html}JIRA ticket}} in our issue tracker.