23 lines
1.0 KiB
Groovy
23 lines
1.0 KiB
Groovy
apply plugin: 'io.spring.convention.spring-sample-boot'
|
|
|
|
dependencies {
|
|
implementation project(':spring-session-data-redis')
|
|
implementation "org.springframework.boot:spring-boot-starter-web"
|
|
implementation "org.springframework.boot:spring-boot-starter-thymeleaf"
|
|
implementation "org.springframework.boot:spring-boot-starter-security"
|
|
implementation "org.springframework.boot:spring-boot-starter-data-redis"
|
|
implementation "org.springframework.boot:spring-boot-devtools"
|
|
implementation "nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect"
|
|
implementation "org.webjars:bootstrap"
|
|
implementation "org.webjars:html5shiv"
|
|
implementation "org.webjars:webjars-locator-core"
|
|
|
|
testImplementation "org.springframework.boot:spring-boot-starter-test"
|
|
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"
|
|
integrationTestCompile "org.testcontainers:testcontainers"
|
|
}
|