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
     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <project name="testing build script" default="all" basedir=".">
     3     <target name="all">
     4         <taskdef name="grepcopy" classname="org.apidesign.infra.ant.GrepCopy"/>
     5         <fail unless="out.dir"/>
     6 
     7         <grepcopy target="${out.dir}">
     8             <fileset dir="${dir1}">
     9                 <include name="${include1}"/>
    10             </fileset>    
    11         </grepcopy>
    12     </target>
    13 
    14 </project>