Updates and payments additions
This commit is contained in:
24
build.gradle
24
build.gradle
@@ -1,6 +1,6 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot' version '3.5.6'
|
||||
id 'org.springframework.boot' version '4.1.0'
|
||||
id 'io.spring.dependency-management' version '1.1.7'
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@ description = 'Demo project for Spring Boot'
|
||||
|
||||
java {
|
||||
toolchain {
|
||||
languageVersion = JavaLanguageVersion.of(17)
|
||||
languageVersion = JavaLanguageVersion.of(21)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -21,29 +21,27 @@ repositories {
|
||||
|
||||
dependencies {
|
||||
implementation("org.springframework.boot:spring-boot-starter-webflux")
|
||||
implementation("org.springframework.boot:spring-boot-starter-webclient")
|
||||
implementation("org.springframework.boot:spring-boot-starter-data-r2dbc")/*
|
||||
implementation("io.r2dbc:r2dbc-postgresql")*/
|
||||
|
||||
/*implementation("org.springframework.boot:spring-boot-starter-data-redis-reactive")
|
||||
*/implementation("io.lettuce:lettuce-core:6.2.2.RELEASE")
|
||||
implementation("org.springframework.boot:spring-boot-starter-data-redis-reactive")
|
||||
implementation("org.springframework.boot:spring-boot-starter-validation")
|
||||
|
||||
// Choose ONE driver depending on your DB:
|
||||
runtimeOnly("io.r2dbc:r2dbc-h2") // for in-memory
|
||||
|
||||
implementation("io.github.resilience4j:resilience4j-ratelimiter:2.0.2")
|
||||
implementation("io.github.resilience4j:resilience4j-circuitbreaker:2.0.2")
|
||||
implementation("io.github.resilience4j:resilience4j-retry:2.0.2")
|
||||
|
||||
implementation("org.springframework.boot:spring-boot-starter")
|
||||
implementation("org.springdoc:springdoc-openapi-starter-webflux-ui:2.6.0")
|
||||
implementation("org.aspectj:aspectjweaver")
|
||||
implementation("org.springdoc:springdoc-openapi-starter-webflux-ui:3.0.3")
|
||||
|
||||
implementation 'io.github.resilience4j:resilience4j-spring-boot2:1.7.1'
|
||||
implementation 'io.github.resilience4j:resilience4j-reactor:1.7.1'
|
||||
implementation 'io.github.resilience4j:resilience4j-spring-boot4:2.4.0'
|
||||
implementation 'io.github.resilience4j:resilience4j-reactor:2.4.0'
|
||||
|
||||
|
||||
|
||||
implementation 'org.projectlombok:lombok:1.18.32' // Use the latest stable version
|
||||
annotationProcessor 'org.projectlombok:lombok:1.18.32' // For annotation processing
|
||||
implementation 'org.projectlombok:lombok:1.18.46' // Use the latest stable version
|
||||
annotationProcessor 'org.projectlombok:lombok:1.18.46' // For annotation processing
|
||||
|
||||
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user