plugins { id "java" id "org.springframework.boot.conventions" } description = "Spring Boot Hazelcast 3 smoke test" configurations.all { resolutionStrategy { force "com.hazelcast:hazelcast:3.12.12" force "com.hazelcast:hazelcast-spring:3.12.12" } } 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")) }