java/ant/test/org/apidesign/infra/ant/color.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Fri, 16 Jul 2010 23:35:08 +0200
branchlivedb
changeset 359 9d430d9bc4b1
permissions -rw-r--r--
Creating the database in Ant. Placing it on a test classpath. Test test now checks real DB content.
     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <project name="testing build script" default="all" basedir=".">
     3     <target name="all">
     4         <taskdef name="grepfilter" classname="org.apidesign.infra.ant.GrepFilter"/>
     5 
     6         <grepfilter id="test.filter.set">
     7             <fileset dir="${dir1}">
     8                 <include name="${include1}"/>
     9             </fileset>
    10         </grepfilter>
    11         
    12         <copy file="${file1}" tofile="${file2}" encoding="utf-8">
    13             <filterset refid="test.filter.set"/>
    14         </copy>
    15     </target>
    16 
    17 </project>