Author: vmassol
Date: Sun Aug 14 14:53:33 2005
New Revision: 232653

URL: http://svn.apache.org/viewcvs?rev=232653&view=rev
Log:
MPEJB-12: Fixed default property values in the web site documentation.

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

Modified: maven/maven-1/plugins/trunk/ejb/plugin.properties
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/ejb/plugin.properties?rev=232653&r1=232652&r2=232653&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/ejb/plugin.properties (original)
+++ maven/maven-1/plugins/trunk/ejb/plugin.properties Sun Aug 14 14:53:33 2005
@@ -20,11 +20,11 @@
 # ejb plugin.
 # -------------------------------------------------------------------
 
-maven.ejb.index=false
-maven.ejb.client.index=false
+maven.ejb.index = false
+maven.ejb.client.index = false
 
 # Location of where ejb sources (non-java) are located.
-maven.ejb.src=${maven.src.dir}/ejb
+maven.ejb.src = ${maven.src.dir}/ejb
 
 # Location where the generated EJB will be placed.
 maven.ejb.build.dir = ${maven.build.dir}
@@ -38,19 +38,19 @@
 maven.ejb.client.final.name = ${maven.final.name}-client.jar
 
 # Location of ejb xml configs - not used atm due to using jar task not ejbjar
-maven.ejb.descriptordir=${maven.ejb.src}/META-INF
+maven.ejb.descriptordir = ${maven.ejb.src}/META-INF
 
-maven.ejb.manifest=${maven.ejb.descriptordir}/MANIFEST.MF
+maven.ejb.manifest = ${maven.ejb.descriptordir}/MANIFEST.MF
 
 # Exclude from the client jar those things that should only exist on the EJB 
server.
 # This list is probably incomplete...
 # Users' projects can add to the list by setting maven.ejb.client.excludes.
-maven.ejb.client.base.excludes=**/*Bean.class,**/*CMP.class,**/*Session.class
+maven.ejb.client.base.excludes = **/*Bean.class,**/*CMP.class,**/*Session.class
 
-# Files to include and exclude from ejb
+# Files to include and exclude from ejb.
 # Note: Files are relative to build.dir
-maven.ejb.includes=**
-maven.ejb.excludes=**/package.html
+maven.ejb.includes = **
+maven.ejb.excludes = **/package.html
 
 # Decide whether a client jar is generated or not.
 maven.ejb.client.generate = true

Modified: maven/maven-1/plugins/trunk/ejb/xdocs/changes.xml
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/ejb/xdocs/changes.xml?rev=232653&r1=232652&r2=232653&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/ejb/xdocs/changes.xml (original)
+++ maven/maven-1/plugins/trunk/ejb/xdocs/changes.xml Sun Aug 14 14:53:33 2005
@@ -25,6 +25,9 @@
   </properties>
   <body>
     <release version="1.7-SNAPSHOT" date="in SVN trunk">
+      <action dev="vmassol" type="fix" issue="MPEJB-12">
+        Fixed default property values in the web site documentation.
+      </action>
       <action dev="vmassol" type="fix" issue="MPEJB-2">
         EJB client jar can now be generated and deployed/installed
         automatically by the standard goals (<code>ejb</code>, 
<code>ejb:ejb</code>,

Modified: maven/maven-1/plugins/trunk/ejb/xdocs/properties.xml
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/ejb/xdocs/properties.xml?rev=232653&r1=232652&r2=232653&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/ejb/xdocs/properties.xml (original)
+++ maven/maven-1/plugins/trunk/ejb/xdocs/properties.xml Sun Aug 14 14:53:33 
2005
@@ -31,14 +31,6 @@
       <table>
         
<tr><th>Property</th><th>Optional?</th><th>Description</th><th>Default</th></tr>
         <tr>
-          <td>maven.ejb.index</td>
-          <td>Yes</td>
-          <td>
-            Whether to create an index list to speed up classloading. 
-            This is a JDK 1.3+ specific feature. Defaults to false.
-          </td>
-        </tr>
-        <tr>
           <td>maven.ejb.src</td>
           <td>Yes</td>
           <td>
@@ -53,7 +45,7 @@
             </strong>
           </td>
           <td>
-            src/ejb
+            ${maven.src.dir}/ejb
           </td>
         </tr>
         <tr>
@@ -92,7 +84,7 @@
           <td>maven.ejb.includes</td>
           <td>Yes</td>
           <td>
-                       Files to include in ejb
+                       Files to include in ejb.
                        Note: Files are relative to 
                        <code>${maven.build.dest}</code>.
           </td>
@@ -113,7 +105,10 @@
           <td>Yes</td>
           <td>
             Whether to create an index list to speed up classloading. 
-            This is a JDK 1.3+ specific feature. Defaults to false.
+            This is a JDK 1.3+ specific feature.
+          </td>
+          <td>
+            false
           </td>
         </tr>
         <tr>
@@ -133,7 +128,7 @@
             Classes excluded from a client ejb jar
           </td>
           <td>
-            None
+            No default
           </td>
         </tr>
         <tr>
@@ -154,6 +149,17 @@
           </td>
           <td>
             true
+          </td>
+        </tr>
+        <tr>
+          <td>maven.ejb.index</td>
+          <td>Yes</td>
+          <td>
+            Whether to create an index list to speed up classloading.
+            This is a JDK 1.3+ specific feature.
+          </td>
+          <td>
+            false
           </td>
         </tr>
       </table>



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to