2016년 3월 18일 금요일

Task name abbreviation

command line에 task를 명시할 때, task의 전체 이름을 명시할 필요는 없다. 고유하게 구분할 수 있을 정도의 줄임말을 통해 task를 실행할 수 있다.
예를 들어, gradle dist 를 줄여서 gradle di 로 실행할 수 있다.

- gradle di 의 실행결과

> gradle di
:compile
compiling source
:compileTest
compiling unit tests
:test
running unit tests
:dist
building the distribution

BUILD SUCCESSFUL

Total time: 1 secs

같은 원리로 compileTest task 역시 camel case 로 줄여서 cT로 실행시킬 수 있다.

- gradle cT 의 실행 결과

> gradle cT
:compile
compiling source
:compileTest
compiling unit tests

BUILD SUCCESSFUL

Total time: 1 secs


원본 출처 : https://docs.gradle.org/current/userguide/tutorial_gradle_command_line.html

댓글 없음 :

댓글 쓰기