You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Gradle의 빌드 프로세스는 초기화(Initialization), 구성(Configuration), 실행(Execution)의 3단계로 이루어집니다.
1) 초기화 단계 (Initialization Phase)
빌드를 시작하기 전에 프로젝트(Project)와 빌드 환경(Setting)을 초기화하는 단계
settings.gradle(.kts)파일을 찾습니다.settings.gradle(.kts)를 통해 여러 서브 모듈들을 찾는다.2) 구성 (Configuration)
초기화된 프로젝트(Project)를 기반으로 빌드 스크립트(build.gradle.kts)를 읽고 빌드 로직를 구성한다.
build.gradle(.kts)를 평가하여 plugin, dependency, task를 구성한다3) 실행 (Execution)
구성된 태스크 그래프를 기반으로 빌드 작업을 실제로 수행하는 단계
reference
https://docs.gradle.org/current/userguide/build_lifecycle.html#sec:initialization
https://stackoverflow.com/questions/74742043/what-is-the-purpose-of-settings-gradle-kts
Beta Was this translation helpful? Give feedback.
All reactions