Apache Ant/Core Concepts/Terminology

From Wikibooks, the open-content textbooks collection

Jump to: navigation, search

[edit] Ant Terminology

  • Ant Project – a collection of named targets that can run in any order depending on the time stamps of the files in the file system. Each build file contains one project.
  • Ant Target – a fixed series of ant tasks in a specified order that can depend on other named targets. Targets can depend only on other targets, not on projects or tasks.
  • Ant Task – something that ant can execute such as a compile, copy or replace. Most tasks have very convenient default values. See the Ant manual for a complete list of tasks.

Next Chapter