From: Carlos S. <car...@us...> - 2005-01-01 20:54:45
|
carlossg 05/01/01 12:54:38 Modified: sdocbook plugin.jelly sdocbook/xdocs changes.xml Log: Don't flatten resources when copying Revision Changes Path 1.10 +2 -2 maven-plugins/sdocbook/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/sdocbook/plugin.jelly,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- plugin.jelly 1 Jan 2005 20:39:20 -0000 1.9 +++ plugin.jelly 1 Jan 2005 20:54:37 -0000 1.10 @@ -171,7 +171,7 @@ <!-- copy resources which html might reference too --> <j:set var="resources" value="${maven.sdocbook.resources.include}" /> <j:if test="${!empty(resources)}"> - <copy todir="${maven.sdocbook.target.dir}" filtering="no" flatten="true"> + <copy todir="${maven.sdocbook.target.dir}" filtering="no" flatten="false"> <fileset dir="${maven.sdocbook.src.dir}" includes="${resources}"/> </copy> </j:if> @@ -260,7 +260,7 @@ <!-- before doing fo2pdf translation, we need to copy any possible resources referenced from the original docbooks --> <j:set var="resources" value="${maven.sdocbook.resources.include}" /> <j:if test="${!empty(resources)}"> - <copy todir="${maven.sdocbook.generated.fo}" filtering="no" flatten="true"> + <copy todir="${maven.sdocbook.generated.fo}" filtering="no" flatten="false"> <fileset dir="${maven.sdocbook.src.dir}" includes="${resources}"/> </copy> </j:if> 1.11 +3 -0 maven-plugins/sdocbook/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/sdocbook/xdocs/changes.xml,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- changes.xml 1 Jan 2005 20:39:13 -0000 1.10 +++ changes.xml 1 Jan 2005 20:54:37 -0000 1.11 @@ -9,6 +9,9 @@ <body> <release version="1.4.1-SNAPSHOT" date="in CVS"> + <action dev="carlossg" type="fix"> + Don't flatten resources when copying. + </action> <action dev="carlossg" type="add"> Added maven.sdocbook.files property. </action> |