Files
tldr/pages.zh/common/ant.md

24 lines
415 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Ant
> Apache Ant构建和管理基于Java的项目。
> 更多信息:<https://ant.apache.org>。
- 使用默认构建文件 `build.xml` 构建项目:
`ant`
- 使用其他构建文件 [f]ile 而非 `build.xml` 构建项目:
`ant -f {{buildfile.xml}}`
- 打印该项目可能的目标信息:
`ant -p`
- 打印调试信息:
`ant -d`
- 执行所有不依赖于失败目标的目标:
`ant -k`