멀티 모듈 프로젝트 구성 방법
(2021년 작성됨) Spring Boot 멀티 모듈 프로젝트 설정(root, 각 모듈 build.gradle 설정) root 프로젝트의 build.gradle (소스 출처 : https://daddyprogrammer.org/post/13156/spring-boot-change-multi-module/) buildscript { ext { springBootVersion = '2.1.4.RELEASE' } repositories { mavenCentral() } dependencies { classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}") classpath "io.spring.gradle:dependen..
2023.05.08