mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
ant: add Korean translation (#10690)
This commit is contained in:
parent
bac77a0148
commit
487bb30984
1 changed files with 25 additions and 0 deletions
25
pages.ko/common/ant.md
Normal file
25
pages.ko/common/ant.md
Normal file
|
@ -0,0 +1,25 @@
|
|||
# ant
|
||||
|
||||
> Apache Ant.
|
||||
> 자바 기반 프로젝트를 빌드하고 관리하는 도구.
|
||||
> 더 많은 정보: <https://ant.apache.org>.
|
||||
|
||||
- 기본 빌드 파일인 `build.xml`로 프로젝트 빌드:
|
||||
|
||||
`ant`
|
||||
|
||||
- 기본 빌드 파일인 `build.xml`이 아니라 지정된 빌드 파일로 프로젝트 빌드:
|
||||
|
||||
`ant -f {{buildfile.xml}}`
|
||||
|
||||
- 이 프로젝트에 정의된 타겟들에 대한 정보 출력:
|
||||
|
||||
`ant -p`
|
||||
|
||||
- 디버깅 정보를 함께 출력:
|
||||
|
||||
`ant -d`
|
||||
|
||||
- 실패한 타겟(들)에 의존하지 않는 모든 타겟을 실행:
|
||||
|
||||
`ant -k`
|
Loading…
Add table
Reference in a new issue