|
Friki example source code file (copy-internal.xml)
The Friki copy-internal.xml source code
<project default="copy-internal">
<property name="source.root" value="src"/>
<property name="dest.root" value="build"/>
<property name="source.dir" value="delivery/files"/>
<property name="dest.dir" value="${source.dir}"/>
<property name="pattern" value="**"/>
<target name="init-copy-internal">
<available property="has.copy.files" file="${source.root}"/>
</target>
<target name="copy-internal" depends="init-copy-internal" if="has.copy.files">
<copy todir="${dest.root}/${dest.dir}" overwrite="true" filtering="off" flatten="false">
<fileset dir="${source.root}/${source.dir}">
<include name="${pattern}"/>
</fileset>
</copy>
</target>
</project>
Other Friki examples (source code examples)Here is a short list of links related to this Friki copy-internal.xml source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.