[
prev
] [
prev-tail
] [
tail
] [
up
]
1.9
Assignment #1: Use Ant
due: Friday, Sept 30
Type the following script to a file named ‘build.xml’.
<..
build.xml
..>
<?xml
version="1.0"?>
<project
basedir=".">
<mkdir
dir="my.dir"
/>
<move
todir="my.dir"
>
<fileset
file="build.xml"
/>
</move>
<echo
message="Done!"/>
</project>
-_-_-
Invoke ant with the command ‘
ant -f build.xml
’ (or just ‘
ant
’)
Design an alternative script with instructions from
http://ant.apache.org/
=>
Manual
=>
Ant Tasks
=>
Core Taks.
[
prev
] [
prev-tail
] [
front
] [
up
]