You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ah...@apache.org on 2006/02/08 01:16:59 UTC

svn commit: r375788 - in /maven/maven-1/plugins/trunk/nsis: plugin.properties xdocs/properties.xml

Author: aheritier
Date: Tue Feb  7 16:16:57 2006
New Revision: 375788

URL: http://svn.apache.org/viewcvs?rev=375788&view=rev
Log:
Fix properties documentation

Modified:
    maven/maven-1/plugins/trunk/nsis/plugin.properties
    maven/maven-1/plugins/trunk/nsis/xdocs/properties.xml

Modified: maven/maven-1/plugins/trunk/nsis/plugin.properties
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/nsis/plugin.properties?rev=375788&r1=375787&r2=375788&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/nsis/plugin.properties (original)
+++ maven/maven-1/plugins/trunk/nsis/plugin.properties Tue Feb  7 16:16:57 2006
@@ -23,7 +23,7 @@
 # This is the jelly template used to create the project.nsh file
 maven.nsis.project.template=${plugin.resources}/templates/project.jelly
 
-# This is the jelly template used to create the project.nsh file
+# This is the jelly template used to create the setup.nsi file
 maven.nsis.setup.template=${plugin.resources}/templates/setup.jelly
 
 # FIXME: Should be able to get this from the POM.

Modified: maven/maven-1/plugins/trunk/nsis/xdocs/properties.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/nsis/xdocs/properties.xml?rev=375788&r1=375787&r2=375788&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/nsis/xdocs/properties.xml (original)
+++ maven/maven-1/plugins/trunk/nsis/xdocs/properties.xml Tue Feb  7 16:16:57 2006
@@ -16,8 +16,6 @@
  * limitations under the License.
  */
  -->
-
-
 <document>
   <properties>
     <title>Maven NSIS Plug-in Properties</title>
@@ -31,70 +29,83 @@
           <th>Description</th>
         </tr>
         <tr>
-          <td>maven.nsis.logo</td>
+          <td>maven.nsis.build.dir</td>
           <td>Yes</td>
           <td>
-            <p>Default value is
-              <code>
-              </code>.</p>
+            <p>The directory containing contents to be bundled.<br/>Default value is ${maven.dist.bin.assembly.dir}</p>
           </td>
         </tr>
         <tr>
-          <td>maven.nsis.license.text</td>
+          <td>maven.nsis.final.name</td>
+          <td>Yes</td>
+          <td>
+            <p>name of generated exe.<br/>Default value is
+              <code>${maven.final.name}</code>.</p>
+          </td>
+        </tr>
+        <tr>
+          <td>maven.nsis.src</td>
           <td>Yes</td>
           <td>
-            <p>Default value is
-              <code>This program is Licensed under The Apache Software License, Version 1.1.</code>.</p>
+            <p>Source of extra files for nsis.<br/>Default value is
+              <code>${basedir}/src/nsis</code>.</p>
+          </td>
+        </tr>
+        <tr>
+          <td>maven.nsis.exe</td>
+          <td>Yes</td>
+          <td>
+            <p>Location of makensis.exe.<br/>Default value is
+              <code>C:/Program Files/NSIS/makensis.exe</code>.</p>
           </td>
         </tr>
         <tr>
           <td>maven.nsis.setup.template</td>
           <td>Yes</td>
           <td>
-            <p>Default value is
+            <p>This is the jelly template used to create the setup.nsi file.<br/>Default value is
               <code>${plugin.resources}/templates/setup.jelly</code>.</p>
           </td>
         </tr>
         <tr>
-          <td>maven.nsis.logo.position</td>
+          <td>maven.nsis.project.template</td>
           <td>Yes</td>
           <td>
-            <p>Default value is
-              <code>left</code>.</p>
+            <p>This is the jelly template used to create the project.nsh file.<br/>Default value is
+              <code>${plugin.resources}/templates/project.jelly</code>.</p>
           </td>
         </tr>
         <tr>
-          <td>maven.nsis.exe</td>
+          <td>maven.nsis.license.text</td>
           <td>Yes</td>
           <td>
-            <p>Default value is
-              <code>C:/Program Files/NSIS/makensis.exe</code>.</p>
+            <p>The License Text.<br/>Default value is
+              <code>This program is Licensed under The Apache Software License, Version 2.0.</code>.</p>
           </td>
         </tr>
         <tr>
-          <td>maven.nsis.logo.widthHeight</td>
+          <td>maven.nsis.logo</td>
           <td>Yes</td>
           <td>
-            <p>Default value is blank</p>
+            <p>Location of the logo file.<br/>Default value is blank.</p>
           </td>
         </tr>
         <tr>
-          <td>maven.nsis.src</td>
+          <td>maven.nsis.logo.position</td>
           <td>Yes</td>
           <td>
-            <p>Default value is
-              <code>${basedir}/src/nsis</code>.</p>
+            <p>Position of the logo on the first page (left, right, top or bottom).<br/>Default value is
+              <code>left</code>.</p>
           </td>
         </tr>
         <tr>
-          <td>maven.nsis.project.template</td>
+          <td>maven.nsis.logo.widthHeight</td>
           <td>Yes</td>
           <td>
-            <p>Default value is
-              <code>${plugin.resources}/templates/project.jelly</code>.</p>
+            <p>size of the logo on the first page.<br/>Default value is blank.</p>
           </td>
         </tr>
       </table>
     </section>
   </body>
-</document>
\ No newline at end of file
+</document>