mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-10 00:58:01 +00:00
Update cheatsheets
This commit is contained in:
29
ant
Normal file
29
ant
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# ant
|
||||
|
||||
> Apache Ant: build and manage Java-based projects.
|
||||
> More information: <https://ant.apache.org>.
|
||||
|
||||
- Build a project with default build file `build.xml`:
|
||||
|
||||
`ant`
|
||||
|
||||
- Build a project using build [f]ile 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`
|
||||
Reference in New Issue
Block a user