26 lines
911 B
Groovy
26 lines
911 B
Groovy
plugins {
|
|
id "org.gretty" version "4.0.0"
|
|
id "io.spring.convention.spring-sample-war"
|
|
}
|
|
|
|
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"
|
|
|
|
integrationTestCompile "org.seleniumhq.selenium:htmlunit-driver"
|
|
integrationTestCompile "org.seleniumhq.selenium:selenium-support"
|
|
}
|