Skip to content

Commit df515fb

Browse files
committed
chore[dependency]:취약점이 있는 의존성 보완 및 MySql 의존성 추가
1 parent 489fd0c commit df515fb

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

backend/build.gradle

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,22 +25,34 @@ repositories {
2525
}
2626

2727
dependencies {
28+
// Spring Boot Starters (핵심 기능)
2829
implementation 'org.springframework.boot:spring-boot-starter-cache'
2930
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
3031
implementation 'org.springframework.boot:spring-boot-starter-security'
3132
implementation 'org.springframework.boot:spring-boot-starter-validation'
3233
implementation 'org.springframework.boot:spring-boot-starter-web'
33-
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.9")
34+
35+
// API Documentation (문서화)
36+
implementation 'org.apache.commons:commons-lang3:3.18.0'
37+
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.9'
38+
39+
// Database (데이터베이스)
40+
runtimeOnly 'com.h2database:h2'
41+
runtimeOnly 'com.mysql:mysql-connector-j'
42+
43+
// Development Tools (개발 도구)
3444
compileOnly 'org.projectlombok:lombok'
3545
developmentOnly 'org.springframework.boot:spring-boot-devtools'
36-
runtimeOnly 'com.h2database:h2'
37-
runtimeOnly 'org.postgresql:postgresql'
46+
47+
// Annotation Processing (어노테이션 처리)
3848
annotationProcessor 'org.projectlombok:lombok'
49+
50+
// Testing (테스트)
3951
testImplementation 'org.springframework.boot:spring-boot-starter-test'
4052
testImplementation 'org.springframework.security:spring-security-test'
4153
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
4254
}
4355

4456
tasks.named('test') {
4557
useJUnitPlatform()
46-
}
58+
}

0 commit comments

Comments
 (0)