. , build.xml. , . ( ? ""?) , .
ant --projecthelp. ant -p.
, description , . build.xml description, ant --projecthelp description.
<description> build.xml, . :
<project name="Fubar" default="foo">
<description>
Project Fubar is a highly secret project that you shouldn't know
anything about. If you have read this, you've violated national
security guidelines and must be terminated with extreme finality.
Hey, it hurts me more than it hurts you.
</description>
<target name="foo"
description="Runs target "foo""/>
<target name="fu"/>
<target name="bar"
description="Runs target "bar""/>
</project>
ant -p:
$ ant --projecthelp
Buildfile: build.xml
Project Fubar is a highly secret project that you shouldn't know
anything about. If you have read this, you've violated national
security guidelines and must be terminated with extreme finality.
Hey, it hurts me more than it hurts you.
Main targets:
bar Runs target "bar"
foo Runs target "foo"
Default target: foo
$
: build.xml, target fu , .