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

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`