Upgrade Hazelcast to 3.12.2

Resolves: #1483
This commit is contained in:
Vedran Pavic
2019-08-02 22:39:28 +02:00
parent a988b062c3
commit 63f1013a07
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ dependencyManagement {
}
dependencies {
dependencySet(group: 'com.hazelcast', version: '3.12.1') {
dependencySet(group: 'com.hazelcast', version: '3.12.2') {
entry 'hazelcast'
entry 'hazelcast-client'
}

View File

@@ -47,7 +47,7 @@ import org.springframework.test.context.web.WebAppConfiguration;
@WebAppConfiguration
class HazelcastClientRepositoryITests extends AbstractHazelcastRepositoryITests {
private static GenericContainer container = new GenericContainer<>("hazelcast/hazelcast:3.12.1")
private static GenericContainer container = new GenericContainer<>("hazelcast/hazelcast:3.12.2")
.withExposedPorts(5701).withEnv("JAVA_OPTS", "-Dhazelcast.config=/opt/hazelcast/config_ext/hazelcast.xml")
.withClasspathResourceMapping("/hazelcast-server.xml", "/opt/hazelcast/config_ext/hazelcast.xml",
BindMode.READ_ONLY);