1
0
Fork 0
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:
ECMs 2023-09-20 12:28:41 +09:00 committed by GitHub
parent bac77a0148
commit 487bb30984
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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