Skip to content

Commit 5dacbf0

Browse files
committed
chore: Spring Data JPA 및 Redis 의존성 추가
1 parent 67a71df commit 5dacbf0

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

build.gradle

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,24 @@ dependencies {
2727
implementation 'org.springframework.boot:spring-boot-starter-security'
2828
implementation 'org.springframework.boot:spring-boot-starter-web'
2929
implementation 'org.springframework.boot:spring-boot-starter-web-services'
30+
31+
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
32+
3033
compileOnly 'org.projectlombok:lombok'
3134
developmentOnly 'org.springframework.boot:spring-boot-docker-compose'
3235
runtimeOnly 'com.mysql:mysql-connector-j'
3336
annotationProcessor 'org.projectlombok:lombok'
37+
3438
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.2'
39+
3540
testImplementation 'org.springframework.boot:spring-boot-starter-test'
3641
testImplementation 'org.springframework.security:spring-security-test'
3742
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
43+
44+
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
45+
implementation 'org.springframework.data:spring-data-redis'
46+
47+
implementation 'io.lettuce.core:lettuce-core'
3848
}
3949

4050
tasks.named('test') {
@@ -43,4 +53,4 @@ tasks.named('test') {
4353

4454
jar {
4555
enabled = false
46-
}
56+
}

0 commit comments

Comments
 (0)