2016년 3월 18일 금요일

Selecting which build to execute

gradle command를 사용할 때, 기본적으로 현재 폴더에서 build file을 찾게 된다. 만약 -b option을 사용하게 되면 다른 build file을 선택할 수 있다.
이 때에 settings.gradle 파일은 사용되지 않는다.

- subdir/myproject.gradle
task hello << {
    println "using build file '$buildFile.name' in '$buildFile.parentFile.name'."
}
- gradle -q -b subdir/myproject.gradle hello 의 실행 결과
> gradle -q -b subdir/myproject.gradle hello
using build file 'myproject.gradle' in 'subdir'.


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

댓글 없음 :

댓글 쓰기