Skip to content

Commit

Permalink
[docs] redisson의존성에서 redis 의존성으로 교체
Browse files Browse the repository at this point in the history
현재 이슈에서는 redisson을 사용한다는 보장이 없기 때문에 수정
  • Loading branch information
Hyeon-Uk authored Aug 27, 2024
1 parent 6eae4b7 commit 38b3a43
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,12 @@ dependencies {
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'

// https://mvnrepository.com/artifact/org.redisson/redisson-spring-boot-starter
implementation 'org.redisson:redisson-spring-boot-starter:3.35.0'
// https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-data-redis
implementation 'org.springframework.boot:spring-boot-starter-data-redis:3.3.3'


// https://mvnrepository.com/artifact/com.github.codemonstur/embedded-redis
implementation 'com.github.codemonstur:embedded-redis:1.4.3'
implementation 'com.github.codemonstur:embedded-redis:1.4.3'

//QueryDsl
// QueryDsl
Expand Down Expand Up @@ -72,4 +73,4 @@ compileJava.dependsOn clean
// java source set 에 querydsl QClass 위치 추가
sourceSets {
main.java.srcDirs += "$projectDir/build/generated"
}
}

0 comments on commit 38b3a43

Please sign in to comment.