2016년 3월 17일 목요일

Excluding tasks

당신은 -x command option을 통해 실행되는 task를 제외시킬 수 있다. 아래의 결과를 살펴보자.

task compile << {
    println 'compiling source'
}

task compileTest(dependsOn: compile) << {
    println 'compiling unit tests'
}

task dist(dependsOn: [compile]) << {
    println 'building the distribution'
}

task test(dependsOn: [compile, compileTest,dist]) << {
    println 'running unit tests'
}
- gradle dist -x test 의 실행 결과
> gradle dist -x test
:compile
compiling source
:dist
building the distribution

BUILD SUCCESSFUL

Total time: 1 secs

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

댓글 없음 :

댓글 쓰기