ant: add German translation (#7262)

beep
Michael Schwarz 2021-10-29 01:47:54 +02:00 committed by GitHub
parent 1c7a8ead84
commit d3bb0312a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 25 additions and 0 deletions

25
pages.de/common/ant.md Normal file
View 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`