Dependency scope가 compile·runtime·test surface를 나눈다
실행에 필요 없는 processor와 test fixture가 release artifact로 새지 않게 graph를 읽는다.
| Scope | 포함 시점 | 대표 예 |
|---|---|---|
| implementation | compile+runtime | web starter |
| runtimeOnly | runtime | database driver |
| testImplementation | test | test starter |