You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
669 B
17 lines
669 B
plugins { |
|
id "java" |
|
} |
|
|
|
description = "Spring Boot Session smoke test" |
|
|
|
dependencies { |
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-actuator")) |
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-security")) |
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")) |
|
implementation("com.hazelcast:hazelcast") |
|
implementation("org.springframework.session:spring-session-hazelcast") { |
|
exclude group: "javax.annotation", module: "javax.annotation-api" |
|
} |
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")) |
|
}
|
|
|