File tree Expand file tree Collapse file tree 4 files changed +35
-35
lines changed Expand file tree Collapse file tree 4 files changed +35
-35
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ plugins {
2+ java
3+ id(" org.springframework.boot" ) version " 3.5.4"
4+ id(" io.spring.dependency-management" ) version " 1.1.7"
5+ }
6+
7+ group = " zin.rashidi"
8+ version = " 0.0.1-SNAPSHOT"
9+
10+ java {
11+ toolchain {
12+ languageVersion = JavaLanguageVersion .of(21 )
13+ }
14+ }
15+
16+ repositories {
17+ mavenCentral()
18+ }
19+
20+ dependencies {
21+ implementation(" org.springframework.boot:spring-boot-starter-data-jpa" )
22+ implementation(" org.springframework.boot:spring-boot-starter-data-redis" )
23+ runtimeOnly(" org.postgresql:postgresql" )
24+ testImplementation(" org.springframework.boot:spring-boot-starter-test" )
25+ testImplementation(" org.springframework.boot:spring-boot-testcontainers" )
26+ testImplementation(" org.testcontainers:junit-jupiter" )
27+ testImplementation(" org.testcontainers:postgresql" )
28+ testImplementation(" com.redis:testcontainers-redis" )
29+ testRuntimeOnly(" org.junit.platform:junit-platform-launcher" )
30+ }
31+
32+ tasks.named<Test >(" test" ) {
33+ useJUnitPlatform()
34+ }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ rootProject.name = " data-redis-cache"
You can’t perform that action at this time.
0 commit comments