ant: add Chinese translation (#9484)

pull/1/head
Ethan Liu 2022-11-06 19:21:47 +08:00 committed by GitHub
parent 593fc86b20
commit 3d84aed2d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 25 additions and 0 deletions

25
pages.zh/common/ant.md Normal file
View File

@ -0,0 +1,25 @@
# ant
> Apache Ant。
> 用于构建和管理基于 Java 的项目的工具。
> 更多信息:<https://ant.apache.org>.
- 用默认的构建文件 `build.xml` 构建一个项目:
`ant`
- 使用 `build.xml` 以外的构建文件构建项目:
`ant -f {{构建文件.xml}}`
- 打印该项目可能的目标信息:
`ant -p`
- 打印调试信息:
`ant -d`
- 执行所有不依赖失败目标的目标:
`ant -k`