|
Ant example source code file (copy.xml)
The copy.xml source code<?xml version="1.0"?> <project name="copy-test" basedir="." default="test1"> <target name="test1"> <copy file="copy.xml" tofile="copytest1.tmp" /> </target> <target name="test2"> <copy file="copy.xml" todir="copytest1dir" overwrite="true"/> </target> <target name="filtertest"> <!-- check fix for bugzilla 23154 --> <delete quiet="yes" file="copy.filter.out"/> <delete quiet="yes" file="copy.filter.inp"/> <concat destfile="copy.filter.inp"> PRODUCT_VERSION=6.2.1.4 PRODUCT_BUILD=6.5 (BLD_65036) PRODUCT_VERSION=6.2.1.4 PRODUCT_BUILD=6.5 (BLD_65036) </concat> <copy file="copy.filter.inp" tofile="copy.filter.out"> <filterset begintoken="6" endtoken="4"> <filter token=".2.1." value="2.6.4" /> </filterset> </copy> <concat> Other Ant examples (source code examples)Here is a short list of links related to this Ant copy.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.