ant: add page (#4153)

client-spec/clarity
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
1 changed files with 25 additions and 0 deletions

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`