Add How-to: Implement core services with Redis
Closes gh-1019
This commit is contained in:
@@ -12,6 +12,10 @@ java {
|
||||
sourceCompatibility = JavaVersion.VERSION_17
|
||||
}
|
||||
|
||||
compileJava {
|
||||
options.compilerArgs << '-parameters'
|
||||
}
|
||||
|
||||
antora {
|
||||
options = [clean: true, fetch: !project.gradle.startParameter.offline, stacktrace: true]
|
||||
environment = [
|
||||
@@ -57,6 +61,10 @@ dependencies {
|
||||
implementation "org.springframework.boot:spring-boot-starter-oauth2-client"
|
||||
implementation "org.springframework.boot:spring-boot-starter-oauth2-resource-server"
|
||||
implementation "org.springframework.boot:spring-boot-starter-data-jpa"
|
||||
implementation ("org.springframework.boot:spring-boot-starter-data-redis") {
|
||||
exclude group: "io.lettuce", module: "lettuce-core"
|
||||
}
|
||||
implementation "redis.clients:jedis"
|
||||
implementation "org.springframework:spring-webflux"
|
||||
implementation project(":spring-security-oauth2-authorization-server")
|
||||
runtimeOnly "com.h2database:h2"
|
||||
|
||||
Reference in New Issue
Block a user