Upgrade Hazelcast to 5.0.2

Closes gh-2011
This commit is contained in:
Eleftheria Stein
2022-01-17 14:00:15 +01:00
parent 104bcefbc1
commit 499cb75b1b
2 changed files with 3 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ dependencyManagement {
}
dependencies {
dependency 'com.hazelcast:hazelcast:5.0'
dependency 'com.hazelcast:hazelcast:5.0.2'
dependency 'org.aspectj:aspectjweaver:1.9.7'
dependency 'ch.qos.logback:logback-core:1.2.3'
dependency 'com.google.code.findbugs:jsr305:3.0.2'

View File

@@ -48,8 +48,8 @@ import org.springframework.test.context.web.WebAppConfiguration;
@Disabled("Re-enable when Hazelcast image uses JDK 17")
class ClientServerHazelcastIndexedSessionRepositoryITests extends AbstractHazelcastIndexedSessionRepositoryITests {
private static GenericContainer container = new GenericContainer<>("hazelcast/hazelcast:5.0").withExposedPorts(5701)
.withCopyFileToContainer(MountableFile.forClasspathResource("/hazelcast-server.xml"),
private static GenericContainer container = new GenericContainer<>("hazelcast/hazelcast:5.0.2")
.withExposedPorts(5701).withCopyFileToContainer(MountableFile.forClasspathResource("/hazelcast-server.xml"),
"/opt/hazelcast/hazelcast.xml")
.withEnv("HAZELCAST_CONFIG", "hazelcast.xml");