Here is the code what I have tried,
To copy the folders and files from the XHTML plugin - reource folder to the output location created by XHTML DITA-OT transformation.
plugin.xml
<plugin id="com.example.extendchunk">
<feature extension="depend.preprocess.post" value="copyfiles"/>
<feature extension="dita.conductor.target.relative" file="myAntStuffWrapper.xml"/>
</plugin>
myAntStuffWrapper.xml
<dummy>
<import file="myAntStuff.xml"/>
</dummy>
myAntStuff.xml
<?xml version="1.0" encoding="UTF-8"?>
<project basedir="." name="myAntStuff">
<target name="copyfiles">
<copy todir="foo">
<fileset>
<include name="**/*.bar"/>
</fileset>
</copy>
</target>
</project>
Using this, we need to copy multiple files and folders to the output location. I.E. (C:\DITA-OT1.8.5\plugins\org.dita.xhtml\resource) to the output location (E:\task\out\xmthl) - Created by the XHTML DITA OT transformation.
Please explain me how to specify the below tags.
<copy todir="foo">
and
<include name="**/*.bar"/>