evenisse    2003/08/08 06:30:45

  Modified:    src/plugins-build/ejb Tag: MAVEN_RC1_STABLE plugin.jelly
                        plugin.properties
               src/plugins-build/ejb/xdocs Tag: MAVEN_RC1_STABLE
                        changes.xml properties.xml
  Log:
  MAVEN-632. Add maven.ejb.excludes and maven.ejb.includes properties.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.8.2.2   +4 -1      maven/src/plugins-build/ejb/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven/src/plugins-build/ejb/plugin.jelly,v
  retrieving revision 1.8.2.1
  retrieving revision 1.8.2.2
  diff -u -r1.8.2.1 -r1.8.2.2
  --- plugin.jelly      7 Aug 2003 16:59:39 -0000       1.8.2.1
  +++ plugin.jelly      8 Aug 2003 13:30:45 -0000       1.8.2.2
  @@ -100,7 +100,10 @@
         </ant:manifest>
       
         <ant:fileset dir="${maven.ejb.src}"/>
  -      <ant:fileset dir="${maven.build.dest}"/>
  +      <ant:fileset dir="${maven.build.dest}"
  +        includes="${maven.ejb.includes}"
  +        excludes="${maven.ejb.excludes}">
  +      </ant:fileset>
   
       </ant:jar>
   
  
  
  
  1.1.1.1.2.2 +1 -1      maven/src/plugins-build/ejb/plugin.properties
  
  Index: plugin.properties
  ===================================================================
  RCS file: /home/cvs/maven/src/plugins-build/ejb/plugin.properties,v
  retrieving revision 1.1.1.1.2.1
  retrieving revision 1.1.1.1.2.2
  diff -u -r1.1.1.1.2.1 -r1.1.1.1.2.2
  --- plugin.properties 7 Aug 2003 16:59:39 -0000       1.1.1.1.2.1
  +++ plugin.properties 8 Aug 2003 13:30:45 -0000       1.1.1.1.2.2
  @@ -1 +1 @@
  -# -------------------------------------------------------------------
# P L U G I N  P R O P E R T I E S
# -------------------------------------------------------------------
# ejb plugin.
# -------------------------------------------------------------------
# Location of where ejb sources (non-java) are located.
maven.ejb.src=${maven.src.dir}/ejb
# 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.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
  \ No newline at end of file
  +# -------------------------------------------------------------------
# P L U G I N  P R O P E R T I E S
# -------------------------------------------------------------------
# ejb plugin.
# -------------------------------------------------------------------
# Location of where ejb sources (non-java) are located.
maven.ejb.src=${maven.src.dir}/ejb
# 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.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
# Files to include and exclude from ejb
# Note: Files are relative to build.dir
maven.ejb.includes=**
maven.ejb.excludes=**/package.html
  \ No newline at end of file
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.3.4.1   +3 -0      maven/src/plugins-build/ejb/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/maven/src/plugins-build/ejb/xdocs/changes.xml,v
  retrieving revision 1.3
  retrieving revision 1.3.4.1
  diff -u -r1.3 -r1.3.4.1
  --- changes.xml       7 Jul 2003 09:52:33 -0000       1.3
  +++ changes.xml       8 Aug 2003 13:30:45 -0000       1.3.4.1
  @@ -6,6 +6,9 @@
     </properties>
     <body>
       <release version="1.1" date="in CVS">
  +      <action dev="evenisse" type="add">
  +        Added maven.ejb.excludes and maven.ejb.includes properties.
  +      </action>
         <action dev="michal" type="add">
           Added deploy, deploy-snapshot and install-snapshot goals
         </action>
  
  
  
  1.2.2.2   +20 -0     maven/src/plugins-build/ejb/xdocs/properties.xml
  
  Index: properties.xml
  ===================================================================
  RCS file: /home/cvs/maven/src/plugins-build/ejb/xdocs/properties.xml,v
  retrieving revision 1.2.2.1
  retrieving revision 1.2.2.2
  diff -u -r1.2.2.1 -r1.2.2.2
  --- properties.xml    7 Aug 2003 16:59:40 -0000       1.2.2.1
  +++ properties.xml    8 Aug 2003 13:30:45 -0000       1.2.2.2
  @@ -21,6 +21,26 @@
             </td>
           </tr>
           <tr>
  +          <td>maven.ejb.includes</td>
  +          <td>Yes</td>
  +          <td>
  +                     Files to include in ejb
  +                     Note: Files are relative to 
  +                     <code>${maven.build.dest}</code>.
  +          </td>
  +          <td>**</td>
  +        </tr>
  +        <tr>
  +          <td>maven.ejb.excludes</td>
  +          <td>Yes</td>
  +          <td>
  +                     Files to exclude in ejb
  +                     Note: Files are relative to 
  +                     <code>${maven.build.dest}</code>.
  +          </td>
  +          <td>**/package.html</td>
  +        </tr>
  +        <tr>
             <td>maven.ejb.client.base.excludes</td>
             <td>Yes</td>
             <td>
  
  
  

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

Reply via email to