mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 05:22:09 +02:00
ant: add German translation (#7262)
This commit is contained in:
parent
1c7a8ead84
commit
d3bb0312a2
1 changed files with 25 additions and 0 deletions
25
pages.de/common/ant.md
Normal file
25
pages.de/common/ant.md
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
# ant
|
||||||
|
|
||||||
|
> Apache Ant.
|
||||||
|
> Tool zum Bauen und Verwalten von Projekten, die auf Java basieren.
|
||||||
|
> Weitere Informationen: <https://ant.apache.org>.
|
||||||
|
|
||||||
|
- Baue ein Projekt mit der Standard build-Datei `build.xml`:
|
||||||
|
|
||||||
|
`ant`
|
||||||
|
|
||||||
|
- Baue ein Projekt mit einer anderen build-Datei als `build.xml`:
|
||||||
|
|
||||||
|
`ant -f {{buildfile.xml}}`
|
||||||
|
|
||||||
|
- Zeige Informationen über mögliche targets für dieses Projekt:
|
||||||
|
|
||||||
|
`ant -p`
|
||||||
|
|
||||||
|
- Zeige Debugging-Informationen:
|
||||||
|
|
||||||
|
`ant -d`
|
||||||
|
|
||||||
|
- Führe alle targets aus, die nicht von fehlgeschlagenen targets abhängen:
|
||||||
|
|
||||||
|
`ant -k`
|
Loading…
Add table
Reference in a new issue