1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-21 21:22:06 +02:00
tldr/pages/common/ant.md

24 lines
523 B
Markdown

# ant
> Apache Ant: build and manage Java-based projects.
> More information: <https://ant.apache.org/manual/index.html>.
- Build a project with default build file `build.xml`:
`ant`
- 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]}}`