2020-07-06 19:57:49 +04:00
|
|
|
# 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`
|
|
|
|
|
2024-02-09 11:34:08 -03:00
|
|
|
- Build a project using build [f]ile other than `build.xml`:
|
2020-07-06 19:57:49 +04:00
|
|
|
|
|
|
|
`ant -f {{buildfile.xml}}`
|
|
|
|
|
|
|
|
- Print information on possible targets for this project:
|
|
|
|
|
|
|
|
`ant -p`
|
|
|
|
|
2020-10-27 09:58:52 +03:30
|
|
|
- Print debugging information:
|
2020-07-06 19:57:49 +04:00
|
|
|
|
|
|
|
`ant -d`
|
|
|
|
|
|
|
|
- Execute all targets that do not depend on fail target(s):
|
|
|
|
|
|
|
|
`ant -k`
|