1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 12:45:59 +02:00

ant: add page (#4153)

This commit is contained in:
Karthikeyan Vaithilingam 2020-07-06 19:57:49 +04:00 committed by GitHub
parent c0222fbb13
commit 7c8ffa3e15
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

25
pages/common/ant.md Normal file
View file

@ -0,0 +1,25 @@
# 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`