dion        2004/01/28 18:31:22

  Modified:    ejb/xdocs properties.xml changes.xml
               ejb      plugin.jelly
  Log:
  Make maven.ejb.src optional
  
  Revision  Changes    Path
  1.6       +2 -1      maven-plugins/ejb/xdocs/properties.xml
  
  Index: properties.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/ejb/xdocs/properties.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- properties.xml    3 Sep 2003 14:12:31 -0000       1.5
  +++ properties.xml    29 Jan 2004 02:31:22 -0000      1.6
  @@ -22,7 +22,8 @@
             <td>maven.ejb.src</td>
             <td>Yes</td>
             <td>
  -            Root of files to be included within the ejb-jar.  The same directory 
structure will be followed within the assembled jar file.
  +            Root of files to be included within the ejb-jar.
  +            The same directory structure will be followed within the assembled jar 
file.
             </td>
             <td>
               src/ejb
  
  
  
  1.11      +3 -0      maven-plugins/ejb/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/ejb/xdocs/changes.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- changes.xml       26 Nov 2003 21:11:34 -0000      1.10
  +++ changes.xml       29 Jan 2004 02:31:22 -0000      1.11
  @@ -7,6 +7,9 @@
     <body>
   
       <release version="1.3" date="in CVS">
  +      <action dev="dion" type="fix">
  +        Only include maven.ejb.src if it exists
  +      </action>
       </release>
       
       <release version="1.2" date="2003-11-26">
  
  
  
  1.13      +3 -1      maven-plugins/ejb/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven-plugins/ejb/plugin.jelly,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- plugin.jelly      20 Nov 2003 07:25:27 -0000      1.12
  +++ plugin.jelly      29 Jan 2004 02:31:22 -0000      1.13
  @@ -101,7 +101,9 @@
           </ant:section>
         </ant:manifest>
       
  -      <ant:fileset dir="${maven.ejb.src}"/>
  +      <util:available file="${maven.ejb.src}">
  +        <ant:fileset dir="${maven.ejb.src}"/>
  +      </util:available>
         <ant:fileset dir="${maven.build.dest}"
           includes="${maven.ejb.includes}"
           excludes="${maven.ejb.excludes}">
  
  
  

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

Reply via email to