File tree Expand file tree Collapse file tree 1 file changed +16
-4
lines changed Expand file tree Collapse file tree 1 file changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -25,22 +25,34 @@ repositories {
2525}
2626
2727dependencies {
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
4456tasks. named(' test' ) {
4557 useJUnitPlatform()
46- }
58+ }
You can’t perform that action at this time.
0 commit comments