모듈이 여러개 잭 : 기능 단위로 협업하기 편하려고 팀 프로젝트로 분리해서 사용하기 좋아서 사용했다. Multi Moduleinclude 'hashtagmap-web' include 'hashtagmap-core' include 'hashtagmap-instagram-crawler' include 'hashtagmap-kakao-api' include 'hashtagmap-admin' include 'hashtagmap-kakao-scheduler' include 'hashtagmap-instagram-scheduler' include 'hashtagmap-common' include 'hashtagmap-event' include 'hashtagmap-batch' 이런식으로도 가능하다. include 'hashtagmap-web', 'hashtagmap-core', ... 생략 헷갈렸던 부분들을 정리해보자. compile: 모듈이 갖고 있는 의존성도 사용중인 애플리케이션 모듈이 다 쓸 수 있음 implementation: 의존성의 의존성을 사용할 수가 없음, 계층을 넘어가서 의존성을 사용할수가 없음 core의 querydsl의 의존성을 사용하려면 core를 complie 해야 했던 것이 예시이다.https://dundung.tistory.com/243