2016년 3월 21일 월요일

Executing a build with the Wrapper

만약 gradle project가 Wrapper를 설정하였다면, 당신은 project의 root로부터 아래 두 가지 command 중 하나를 이용해 build를 실행시킬 수 있다.

./gradlew  (on Unix-like platforms such as Linux and Mac OS X)
gradlew  (on Windows using the gradlew.bat batch file)

각각의 wrapper 는 gradle의 특정 버전에 묶여있다. 그래서 만약 당신이 위 command를 처음 실행시킨다면, 그에 상응하는 gradle 배포버전을 받아,
build를 실행시킬 것이다.

이것은 당신이 Gradle을 스스로 install하지 않아도 된다는 것 뿐만 아니라, 각 build가 designed 되어 있는 gradle 버전을 사용할 수 있다는 것이다.

당신은 아래에 있는 Wrapper를 구성하는 Gradle project 파일을 지워서는 안된다.

gradlew (Unix Shell script)
gradlew.bat (Windows batch file)
gradle/wrapper/gradle-wrapper.jar (Wrapper JAR)
gradle/wrapper/gradle-wrapper.properties (Wrapper properties)

만약 Gradle 배포버전이 저장되어 있는지 확인하고 싶다면, 당신은 아래 path에서 그것을 찾을 수 있다.

$USER_HOME/.gradle/wrapper/dists.

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

댓글 없음 :

댓글 쓰기