Skip to content

Commit 7f461f7

Browse files
committed
feat: 충돌 해결
2 parents 524758d + 13d200d commit 7f461f7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+1988
-76
lines changed

.gitignore

Lines changed: 89 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,92 @@ db/
7979
data/
8080

8181
### secret 프로필
82-
application-secret.yml
82+
application-secret.yml
83+
84+
### Terraform ###
85+
# Terraform 상태 파일
86+
*.tfstate
87+
*.tfstate.*
88+
89+
# Terraform 변수 파일
90+
*.tfvars
91+
*.tfvars.json
92+
93+
# 로컬 Terraform 디렉토리
94+
**/.terraform/*
95+
96+
# 충돌 로그 파일
97+
crash.log
98+
crash.*.log
99+
100+
# Terraform 재정의 파일
101+
override.tf
102+
override.tf.json
103+
*_override.tf
104+
*_override.tf.json
105+
106+
# Terraform CLI 설정 파일
107+
.terraformrc
108+
terraform.rc
109+
110+
#
111+
.terraform.lock.hcl
112+
113+
### macOS ###
114+
# General
115+
.DS_Store
116+
.AppleDouble
117+
.LSOverride
118+
119+
# Icon must end with two \r
120+
Icon
121+
122+
123+
# Thumbnails
124+
._*
125+
126+
# Files that might appear in the root of a volume
127+
.DocumentRevisions-V100
128+
.fseventsd
129+
.Spotlight-V100
130+
.TemporaryItems
131+
.Trashes
132+
.VolumeIcon.icns
133+
.com.apple.timemachine.donotpresent
134+
135+
# Directories potentially created on remote AFP share
136+
.AppleDB
137+
.AppleDesktop
138+
Network Trash Folder
139+
Temporary Items
140+
.apdisk
141+
142+
### macOS Patch ###
143+
# iCloud generated files
144+
*.icloud
145+
146+
### Windows ###
147+
# Windows thumbnail cache files
148+
Thumbs.db
149+
Thumbs.db:encryptable
150+
ehthumbs.db
151+
ehthumbs_vista.db
152+
153+
# Dump file
154+
*.stackdump
155+
156+
# Folder config file
157+
[Dd]esktop.ini
158+
159+
# Recycle Bin used on file shares
160+
$RECYCLE.BIN/
161+
162+
# Windows Installer files
163+
*.cab
164+
*.msi
165+
*.msix
166+
*.msm
167+
*.msp
168+
169+
# Windows shortcuts
170+
*.lnk

build.gradle.kts

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ dependencies {
3535
testImplementation("org.springframework.boot:spring-boot-starter-test")
3636
testImplementation("org.springframework.security:spring-security-test")
3737
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
38-
implementation ("org.springframework.kafka:spring-kafka") // Kafka 통합
3938

4039
// Lombok
4140
compileOnly("org.projectlombok:lombok")
@@ -48,10 +47,6 @@ dependencies {
4847

4948
//redis
5049
implementation("org.springframework.boot:spring-boot-starter-data-redis")
51-
implementation("org.springframework.session:spring-session-data-redis")
52-
53-
// actuator
54-
implementation("org.springframework.boot:spring-boot-starter-actuator")
5550

5651
// Security
5752
implementation("org.springframework.boot:spring-boot-starter-security")
@@ -69,6 +64,16 @@ dependencies {
6964

7065
// WebClient
7166
implementation ("org.springframework.boot:spring-boot-starter-webflux")
67+
68+
69+
// aws
70+
implementation(platform("software.amazon.awssdk:bom:2.24.0"))
71+
implementation("software.amazon.awssdk:s3")
72+
73+
// Spring Security OAuth2
74+
implementation ("org.springframework.security:spring-security-oauth2-client:6.4.2") // Or the version you're using
75+
implementation ("org.springframework.security:spring-security-oauth2-core:6.4.2") // Or the version you're using
76+
7277
}
7378

7479
tasks.withType<Test> {

0 commit comments

Comments
 (0)