[Spring Boot] Gradle - implementation & compile 의 차이점
[Gradle] implementation & compile 의 차이점
https://compogetters.tistory.com/64
Gradle Compile과 implementation의 차이점
Intelli J IDE에서 Spring boot + Gradle로 된 샘플 프로젝트로 Gradle에 관련된 프로젝트를 받았다. 기존에는 이클립스 + Maven으로 사용했는데, 사정 상 기존 조합을 버리고 Intelli J + Gradle로 개발 환경을 변
compogetters.tistory.com
[Gradle] implementation과 api, compile의 차이는 무엇인가?
implementation과 api, compile build.gradle에서 사용하는 implementation과 api는 모두 라이브러리를 적용시키는 키워드이다. 오래된 Gradle 버전에는 implementation이 없어서 compile을 사용했고, 새로운 버전(6.x 이
kotlinworld.com
https://kotlinworld.com/318?category=936944
Gradle이 동작하는 순서와 Gradle Task가 동작하는 방식 알아보기
Gradle이 동작하는 순서 Gradle은 Initialization, Configuration, Execution 세가지 Step을 통해 작업을 수행한다. 💡 Gradle이 동작하는 순서 1. Initialization 2. Configuration 3. Execution Initialization Initialization step에서는
kotlinworld.com