- Update to Spring Boot 3.5.0 - Update to Spring Boot 3.5.0's dependencies Closes gh-3368
27 lines
1.1 KiB
Groovy
27 lines
1.1 KiB
Groovy
apply plugin: 'io.spring.convention.spring-sample-boot'
|
|
|
|
ext['spring-security.version'] = '6.3.0-SNAPSHOT'
|
|
|
|
dependencies {
|
|
management platform(project(":spring-session-dependencies"))
|
|
implementation project(':spring-session-data-redis')
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-redis-reactive'
|
|
implementation 'org.springframework.boot:spring-boot-starter-security'
|
|
implementation 'org.springframework.boot:spring-boot-starter-webflux'
|
|
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
testImplementation 'io.projectreactor:reactor-test'
|
|
testImplementation 'org.springframework.security:spring-security-test'
|
|
testImplementation 'org.springframework.boot:spring-boot-testcontainers'
|
|
testImplementation 'org.testcontainers:junit-jupiter'
|
|
testImplementation "org.htmlunit:htmlunit"
|
|
testImplementation "org.seleniumhq.selenium:htmlunit3-driver"
|
|
|
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine"
|
|
testRuntimeOnly "org.junit.platform:junit-platform-launcher"
|
|
}
|
|
|
|
tasks.named('test') {
|
|
useJUnitPlatform()
|
|
}
|