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:
parent
c0222fbb13
commit
7c8ffa3e15
1 changed files with 25 additions and 0 deletions
25
pages/common/ant.md
Normal file
25
pages/common/ant.md
Normal 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`
|
Loading…
Add table
Reference in a new issue