ant: add page (#4153)
This commit is contained in:

committed by
GitHub

parent
c0222fbb13
commit
7c8ffa3e15
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`
|
Reference in New Issue
Block a user