MPEJB-12: Fixed default property values in the web site documentation.
git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@232653 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e3c2a638d8
commit
fffb03be48
@ -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.final.name = ${maven.final.name}.jar
|
||||
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
|
||||
|
||||
@ -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>,
|
||||
|
||||
@ -30,14 +30,6 @@
|
||||
<section name="ejb jar settings">
|
||||
<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>
|
||||
@ -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>
|
||||
@ -156,6 +151,17 @@
|
||||
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>
|
||||
</section>
|
||||
<section name="other settings">
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user