java/ant/test/org/apidesign/infra/ant/copy.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 03 Apr 2020 16:32:36 +0200
changeset 416 9ed8788a1a4e
parent 268 fb9bf90251e3
permissions -rw-r--r--
Using HTTPS to download the libraries
     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <project name="testing build script" default="all" basedir=".">
     3     <taskdef name="grepcopy" classname="org.apidesign.infra.ant.GrepCopy"/>
     4     <fail unless="out.dir"/>
     5     
     6     <target name="all">
     7         <grepcopy target="${out.dir}">
     8             <fileset dir="${dir1}">
     9                 <include name="${include1}"/>
    10             </fileset>    
    11         </grepcopy>
    12     </target>
    13 
    14     <target name="url">
    15         <grepcopy target="${out.dir}" baseurl="${out.url}">
    16             <fileset dir="${dir1}">
    17                 <include name="${include1}"/>
    18             </fileset>    
    19         </grepcopy>
    20     </target>
    21 </project>