1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 11:24:56 +02:00
tldr/pages/common/ant.md
Karthikeyan Vaithilingam 7c8ffa3e15
ant: add page (#4153)
2020-07-06 16:57:49 +01:00

25 lines
455 B
Markdown

# ant
> Apache Ant.
> Tool for building and managing Java-based projects.
> More information: <https://ant.apache.org>.
- Build a project with default build file `build.xml`:
`ant`
- Build a project using build file other than `build.xml`:
`ant -f {{buildfile.xml}}`
- Print information on possible targets for this project:
`ant -p`
- Print debudgging information:
`ant -d`
- Execute all targets that do not depend on fail target(s):
`ant -k`