[그래들] gradle-wrapper.properties에 대해

프로그래밍/자바2021. 1. 1. 18:29

gradle/wrapper/ 경로에는 gradle-wrapper.properties 파일이 있습니다.

 

distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

 

위와 같은 코드가 저장되어 있습니다.

 

gradle wrapper는 GRADLE_USER_HOME에 찾는 gradle이 있는지 확인합니다.

만약 존재한다면 그 gradle을 사용합니다. 만약 없다면 wrapper는 해당 파일을 다운받습니다.

 

이 gradle이 어디에 저장되느냐 궁금했는데

예상했던 대로.. 아래의 경로에 저장되어져 있네요 ㅎㅎ

C:\Users\<user>\.gradle\wrapper\dists

 

 

참고

docs.gradle.org/current/userguide/gradle_wrapper.html

 

The Gradle Wrapper

It is recommended to always execute a build with the Wrapper to ensure a reliable, controlled and standardized execution of the build. Using the Wrapper looks almost exactly like running the build with a Gradle installation. Depending on the operating syst

docs.gradle.org

medium.com/@bherbst/understanding-the-gradle-wrapper-a62f35662ab7

 

Understanding the Gradle Wrapper

The vast majority of developers using Gradle use the Gradle Wrapper. This is great because using the Gradle Wrapper means that developers…

medium.com

 

작성자

Posted by 드리머즈

관련 글

댓글 영역