java/ant/test/org/apidesign/infra/ant/copy.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Sun, 06 Jul 2008 00:12:56 +0200
changeset 268 fb9bf90251e3
child 274 e1a7420cea38
permissions -rw-r--r--
Tool to generate code snippets from sources
jtulach@268
     1
<?xml version="1.0" encoding="UTF-8"?>
jtulach@268
     2
<project name="testing build script" default="all" basedir=".">
jtulach@268
     3
    <target name="all">
jtulach@268
     4
        <taskdef name="grepcopy" classname="org.apidesign.infra.ant.GrepCopy"/>
jtulach@268
     5
        <fail unless="out.dir"/>
jtulach@268
     6
jtulach@268
     7
        <grepcopy target="${out.dir}">
jtulach@268
     8
            <fileset dir="${dir1}">
jtulach@268
     9
                <include name="${include1}"/>
jtulach@268
    10
            </fileset>    
jtulach@268
    11
        </grepcopy>
jtulach@268
    12
    </target>
jtulach@268
    13
jtulach@268
    14
</project>