This commit improves dependency management with the following changes: - `spring-session-core`: move `javax.servlet-api` from `provided` to `optional` configuration due to introduction of reactive support - `spring-session-data-redis`: remove Redis driver from `compile` configuration - Boot samples: delegate Redis driver choice to `spring-boot-starter-data-redis` - polish `test` configuration dependencies
25 lines
852 B
Groovy
25 lines
852 B
Groovy
apply plugin: 'io.spring.convention.spring-module'
|
|
|
|
description = "Spring Session"
|
|
|
|
dependencies {
|
|
compile "org.springframework:spring-jcl"
|
|
|
|
optional "io.projectreactor:reactor-core"
|
|
optional "javax.servlet:javax.servlet-api"
|
|
optional "org.springframework:spring-context"
|
|
optional "org.springframework:spring-jdbc"
|
|
optional "org.springframework:spring-messaging"
|
|
optional "org.springframework:spring-web"
|
|
optional "org.springframework:spring-websocket"
|
|
optional "org.springframework.security:spring-security-core"
|
|
optional "org.springframework.security:spring-security-web"
|
|
|
|
testCompile "junit:junit"
|
|
testCompile "org.mockito:mockito-core"
|
|
testCompile "edu.umd.cs.mtc:multithreadedtc"
|
|
testCompile "org.springframework:spring-test"
|
|
testCompile "org.assertj:assertj-core"
|
|
testCompile "org.springframework.security:spring-security-core"
|
|
}
|