commands.sh

ant

all

Apache Ant: build and manage Java-based projects.

More info →

Options (4)

-fboolean

Build a project using build file other than `build.xml`

Example: ant {{[-f|-buildfile]}} {{buildfile.xml}}
-pboolean

Print information on possible targets for this project

Example: ant {{[-p|-projecthelp]}}
-dboolean

Print debugging information

Example: ant {{[-d|-debug]}}
-kboolean

Execute all targets that do not depend on fail target(s)

Example: ant {{[-k|-keep-going]}}

Examples (5)

Build a project with default build file `build.xml`

Build a project using build file other than `build.xml`

ant [-f|-buildfile] buildfile.xml

Print information on possible targets for this project

ant [-p|-projecthelp]

Print debugging information

ant [-d|-debug]

Execute all targets that do not depend on fail target(s)

ant [-k|-keep-going]
made by @shridhargupta | data from tldr-pages