Ant Building Blocks
With XML elements and tags, we can look at the primary components of an Ant buildfile as components or building blocks. We build the buildfile using these blocks. Some pieces have very specialized uses, while others are more common and used more frequently. Let’s look at the primary components of the Ant buildfile.
The Project
We call the set of tags and elements in
an XML file from the root element — in this case
<project>
— to the lowest-nested tag,
the document object model (or DOM). The first or
root element of any buildfile is always the
<project>
tag. No buildfile can be without
one, nor can it have more than one. The DOM lays elements out in a
tree-like hierarchy, making the buildfile more of an object model
than simply a plain process-description document. The following
example shows a valid project tag:
<project name="MyProject" default="all" basedir="."> ... </project>
The <project>
tag has three attributes:
name
, default
, and
basedir
. The name
attribute
gives the project a name. A project name is valuable for purposes of
identifying log output (to know what project you’re
building). For systems that manage buildfiles, such as an IDE that
can read buildfiles, the project name acts like an identifier for the
buildfile. The default
attribute refers to a target name within the buildfile. If you run Ant without specifying a target on the command line, Ant executes the default target. If the default target doesn’t exist, Ant returns an error. While we do ...
Get Ant: The Definitive Guide now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.