-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathspring-session-sample-boot-jdbc-json-attribute.gradle
More file actions
31 lines (26 loc) · 1.31 KB
/
spring-session-sample-boot-jdbc-json-attribute.gradle
File metadata and controls
31 lines (26 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
apply plugin: 'io.spring.convention.spring-sample-boot'
dependencies {
management platform(project(":spring-session-dependencies"))
implementation project(':spring-session-jdbc')
implementation "nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect"
implementation libs.jackson.databind
implementation "org.springframework.boot:spring-boot-starter-session-jdbc"
implementation "org.springframework.boot:spring-boot-starter-security"
implementation "org.springframework.boot:spring-boot-starter-thymeleaf"
implementation "org.springframework.boot:spring-boot-starter-web"
implementation "org.webjars:bootstrap"
implementation "org.webjars:html5shiv"
implementation "org.webjars:webjars-locator-core"
runtimeOnly 'org.postgresql:postgresql'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.boot:spring-boot-testcontainers'
testImplementation "org.springframework.boot:spring-boot-webmvc-test"
testImplementation 'org.springframework.security:spring-security-test'
testImplementation 'org.testcontainers:testcontainers-junit-jupiter'
testImplementation 'org.testcontainers:testcontainers-postgresql'
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine"
testRuntimeOnly "org.junit.platform:junit-platform-launcher"
}
tasks.named('test') {
useJUnitPlatform()
}