vmassol 2003/06/15 23:51:15 Modified: src/conf driver.jelly Log: Fixed bug. Filtering was applied on the fileset tag whereas it should be applied on the copy one... Thanks Brett! Revision Changes Path 1.13 +2 -2 maven/src/conf/driver.jelly Index: driver.jelly =================================================================== RCS file: /home/cvs/maven/src/conf/driver.jelly,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- driver.jelly 13 Jun 2003 12:24:35 -0000 1.12 +++ driver.jelly 16 Jun 2003 06:51:15 -0000 1.13 @@ -70,8 +70,8 @@ <j:set var="targetDirectory" value="${todir}/${resource.targetPath}"/> </j:otherwise> </j:choose> - <copy todir="${targetDirectory}"> - <fileset dir="${resource.directory}" filtering="${resource.filtering}"> + <copy todir="${targetDirectory}" filtering="${resource.filtering}> + <fileset dir="${resource.directory}"> <j:if test="${resources.includes.isEmpty()}"> <include name="**/**"/> </j:if>
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]