-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[#1] 멀티 모듈 구조 작업 #2
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.gradle, .idea를 .gitignore에 추가해주시고, 이 PR에서도 삭제해주세요. :-)
방금 확인했는데요. 모든 서브 모듈에 gradlew랑 settings.gradle이 존재하네요. 이 부분을 지우시면 될 것 같습니다. 그리고 이 부분이 어떤 역할을 하는지 고민해 보시면 좋을 것 같네요. :-) |
리뷰 감사합니다 😁 말씀해주신 내용 모두 반영하여 우아한 기술블로그 - 멀티모듈 설계 이야기 with Spring, Gradle 을 참고하여 아래와 같이 구성해보았습니다.
|
@@ -0,0 +1,3 @@ | |||
rootProject.name = 'beautify-project' | |||
include ':bp-app-api', ':bp-app-batch', ':bp-core-web', ':bp-dto', ':bp-dto', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
include ':bp-app-api', ':bp-app-batch', ':bp-core-web', ':bp-dto', ':bp-dto', | |
include 'bp-app-api', 'bp-app-batch', 'bp-core-web', ':bp-dto', ':bp-dto', |
.gitignore
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
필요없는 내용은 일단 빼면 좋을 것 같습니다.
@@ -0,0 +1,3 @@ | |||
rootProject.name = 'beautify-project' | |||
include ':bp-app-api', ':bp-app-batch', ':bp-core-web', ':bp-dto', ':bp-dto', | |||
':bp-kafka-event-publisher', ':bp-utils', ':bp-domain-rdb' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
build.gradle
Outdated
@@ -0,0 +1,51 @@ | |||
plugins { | |||
id 'java' | |||
id 'org.springframework.boot' version '3.3.5' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
id 'org.springframework.boot' version '3.3.5' | |
id 'org.springframework.boot' version '3.3.5' apply false |
6주차 멘토링(2024-11-14)에서 말씀해주신 내용 모두 반영하였습니다! 😅 |
고생하셨습니다. :-) 편하실 때, 머지 하시죠! |
멀티 모듈 구조 작업 중 아래와 같이 빌드가 되지 않는 이슈가 있습니다.
위 슬랙 내용중 빌드가 되지 않는 모듈은(a 모듈)
bp-app-batch
입니다.