메인 모듈에 있는 build.gradle이다. 다른 모듈에 있는 templates 디렉토리를 사용하고자 한다.
dependencies {
implementation project(':file-service')
implementation project(':domain')
implementation project(':store')
}
메인 모듈에 있는 build.gradle에 다음 코드를 추가하면 된다.
task copyTemplates(type: Copy) {
from(project(':file-service').file('src/main/resources/templates'))
into 'src/main/resources/templates'
}
processResources.dependsOn(copyTemplates)
'Spring' 카테고리의 다른 글
RequestDTO에 사용하는 @NoArgsConstructor(access = AccessLevel.PROTECTED) (0) | 2024.09.30 |
---|---|
[Spring] 스프링 핵심 원리 - 기본편 > 섹션 8. 빈 생명주기 콜백 (8) | 2024.04.12 |
[Spring] 스프링 핵심 원리 - 기본편 > 섹션 7. 의존관계 자동 주입 (0) | 2024.04.11 |
[Spring] 스프링 핵심 원리 - 기본편 > 섹션 6. 컴포넌트 스캔 (0) | 2024.04.11 |
[Spring] 스프링 핵심 원리 - 기본편 > 섹션 5. 싱글톤 컨테이너 (0) | 2024.04.10 |
댓글