1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 20:02:09 +02:00
tldr/pages.fr/common/ant.md
Nicolas Hansse a7e8269783
ansiweather, ant: add French translation (#8223)
* ansiweather, ant: add French translation

* chore: code review
2022-07-21 01:21:18 +10:00

25 lines
559 B
Markdown

# ant
> Apache Ant.
> Outil pour construire et gérer les projets basés sur du Java.
> Plus d'informations : <https://ant.apache.org>.
- Construit un projet avec le fichier de construction `build.xml` :
`ant`
- Construit un projet en utilisant un autre fichier que `build.xml` :
`ant -f {{fichier_de_construction.xml}}`
- Affiche les informations sur les cibles possibles pour ce projet :
`ant -p`
- Affiche les informations de débogage :
`ant -d`
- Exécute toutes les cibles qui ne dépendent pas d'une ou plusieurs cibles en erreur :
`ant -k`