- Update to Spring Boot 3.5.0 - Update to Spring Boot 3.5.0's dependencies Closes gh-3368
29 lines
1018 B
Groovy
29 lines
1018 B
Groovy
plugins {
|
|
id "org.gretty" version "4.1.0"
|
|
id "io.spring.convention.spring-sample-war"
|
|
}
|
|
|
|
dependencies {
|
|
management platform(project(":spring-session-dependencies"))
|
|
implementation project(':spring-session-jdbc')
|
|
implementation "org.springframework:spring-web"
|
|
implementation "com.h2database:h2"
|
|
implementation "org.slf4j:slf4j-api"
|
|
implementation "org.slf4j:jcl-over-slf4j"
|
|
implementation "org.slf4j:log4j-over-slf4j"
|
|
implementation "ch.qos.logback:logback-classic"
|
|
|
|
providedCompile "jakarta.servlet:jakarta.servlet-api"
|
|
providedCompile "org.glassfish.web:jakarta.servlet.jsp.jstl"
|
|
providedCompile "jakarta.servlet.jsp.jstl:jakarta.servlet.jsp.jstl-api"
|
|
|
|
testImplementation "org.assertj:assertj-core"
|
|
testImplementation "org.junit.jupiter:junit-jupiter-api"
|
|
|
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine"
|
|
testRuntimeOnly "org.junit.platform:junit-platform-launcher"
|
|
|
|
integrationTestCompile "org.htmlunit:htmlunit"
|
|
integrationTestCompile "org.seleniumhq.selenium:htmlunit3-driver"
|
|
}
|