1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 02:02:07 +02:00
tldr/pages/common/ant.md
Vitor Henrique c8f956319f
pages*: simplify page description (#12149)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-02-14 21:25:13 +01:00

24 lines
440 B
Markdown

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