Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision | |||
| public:computer:gradle [2022/04/01 17:25] – [References] alex | public:computer:gradle [2022/07/12 13:36] (current) – alex | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== Gradle ====== | ====== Gradle ====== | ||
| + | |||
| + | ===== 의존성 옵션 ===== | ||
| + | * **implementation**: | ||
| + | * **api**: 의존 라이브러리 수정시 본 모듈을 의존하는 모듈들도 재빌드 \\ 본 모듈을 의존하는 모듈들도 해당 라이브러리의 api 를 사용할 수 있음 | ||
| + | * **compileOnly**: | ||
| + | * **runtimeOnly**: | ||
| + | * **annotationProcessor**: | ||
| + | * **testImplementation** : 테스트 코드를 수행할 때만 적용. | ||
| ===== References ===== | ===== References ===== | ||
| Line 6: | Line 14: | ||
| * [[https:// | * [[https:// | ||
| * [[https:// | * [[https:// | ||
| + | * [[https:// | ||