You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
858 B
Groovy
25 lines
858 B
Groovy
5 years ago
|
plugins {
|
||
|
id "java"
|
||
|
id "org.springframework.boot.conventions"
|
||
|
}
|
||
|
|
||
4 years ago
|
description = "Spring Boot Hazelcast 3 smoke test"
|
||
5 years ago
|
|
||
|
configurations.all {
|
||
|
resolutionStrategy {
|
||
4 years ago
|
force "com.hazelcast:hazelcast:3.12.8"
|
||
|
force "com.hazelcast:hazelcast-spring:3.12.8"
|
||
5 years ago
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-actuator"))
|
||
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-cache"))
|
||
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web"))
|
||
|
implementation("com.hazelcast:hazelcast")
|
||
|
implementation("com.hazelcast:hazelcast-spring")
|
||
|
|
||
|
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
||
|
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-webflux"))
|
||
|
}
|