1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00
tldr/pages/common/ant.md
siavashsoleymani 04f2a99002 ant: fix typo
2020-10-27 11:01:11 +00:00

454 B

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 debugging information:

ant -d

  • Execute all targets that do not depend on fail target(s):

ant -k