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:
vmassol
2005-08-14 21:53:33 +00:00
parent e3c2a638d8
commit fffb03be48
3 changed files with 30 additions and 21 deletions

View File

@@ -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