dion        2003/01/17 18:53:22

  Modified:    src/plugins-build/ear plugin.jelly
  Log:
  Fix from Tim Stephenson to allow ears to contain wars and ejbs
  
  Revision  Changes    Path
  1.7       +10 -0     jakarta-turbine-maven/src/plugins-build/ear/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/ear/plugin.jelly,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- plugin.jelly      17 Jan 2003 15:58:33 -0000      1.6
  +++ plugin.jelly      18 Jan 2003 02:53:22 -0000      1.7
  @@ -40,6 +40,16 @@
               <include name="${dep.artifact}"/>
             </fileset>
           </j:if>
  +        <j:if test="${dep.getProperty('ear.bundle.war')=='true'}">
  +          <fileset dir="${maven.repo.local}/${dep.artifactDirectory}/wars/">
  +            <include name="${dep.artifact}"/>
  +          </fileset>
  +        </j:if>
  +        <j:if test="${dep.getProperty('ear.bundle.ejb')=='true'}">
  +          <fileset dir="${maven.repo.local}/${dep.artifactDirectory}/ejbs/">
  +            <include name="${dep.artifact}"/>
  +          </fileset>
  +        </j:if>
         </j:forEach>
   
         <!-- include license -->
  
  
  

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

Reply via email to