generated from Loopers-dev-lab/loop-pack-be-l2-vol2-java
-
Notifications
You must be signed in to change notification settings - Fork 44
[2주차] 설계 문서 제출 - 김윤선 #68
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
Open
kimyam1008
wants to merge
9
commits into
Loopers-dev-lab:kimyam1008
Choose a base branch
from
kimyam1008:feature/round2-docs
base: kimyam1008
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
c0dcfd8
remove: deprecated codeguide
hanyoung-kurly 3310a3d
fix : 예제 테스트 코드 오류 해결을 위한 testcontainers 버전 업
madirony 2a442e0
Merge pull request #48 from madirony/pr-only-commit
madirony cd9f28b
Merge branch 'kimyam1008' of https://github.com/Loopers-dev-lab/loop-…
kimyam1008 97c8b0a
docs: 요구사항 명세서 작성
kimyam1008 84d8234
docs: 시퀀스 다이어그램 작성
kimyam1008 7e27a2e
docs: 클래스 다이어그램 작성
kimyam1008 0931d5a
docs: ERD 작성
kimyam1008 c604e4d
docs: claude 스킬 가이드 추가 및 .gitignore 설정
kimyam1008 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -38,3 +38,6 @@ out/ | |
|
|
||
| ### Kotlin ### | ||
| .kotlin | ||
|
|
||
| # Claude | ||
| .claude/ | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
🧩 Analysis chain
🏁 Script executed:
Repository: Loopers-dev-lab/loop-pack-be-l2-vol3-java
Length of output: 432
🏁 Script executed:
Repository: Loopers-dev-lab/loop-pack-be-l2-vol3-java
Length of output: 444
🏁 Script executed:
Repository: Loopers-dev-lab/loop-pack-be-l2-vol3-java
Length of output: 4229
🏁 Script executed:
Repository: Loopers-dev-lab/loop-pack-be-l2-vol3-java
Length of output: 112
🏁 Script executed:
Repository: Loopers-dev-lab/loop-pack-be-l2-vol3-java
Length of output: 1819
🏁 Script executed:
Repository: Loopers-dev-lab/loop-pack-be-l2-vol3-java
Length of output: 112
🏁 Script executed:
Repository: Loopers-dev-lab/loop-pack-be-l2-vol3-java
Length of output: 649
testcontainers-bom 도입 시 의존성 해석 검증이 필요하다.
현재 구현에서는 testcontainers 관련 의존성들이 명시적 버전 없이 BOM에 위임되어 있으므로 버전 충돌 위험은 없다. 다만 BOM 적용 범위를 확인해야 한다. 특히
modules/redis모듈의com.redis:testcontainers-redis는 공식 testcontainers-bom 범위 밖일 수 있으므로, 빌드 후./gradlew dependencyInsight --dependency testcontainers-redis --configuration testRuntimeClasspath명령으로 의존성 해석 결과를 확인하여 의도한 버전이 올바르게 적용되었는지 검증하는 것이 필요하다.🤖 Prompt for AI Agents