Skip to content

Commit 7021c7d

Browse files
author
akuksin
committed
use hazelcast version 4.0.1
1 parent 8c9f67f commit 7021c7d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

spring-boot/hazelcast/hazelcast-client-server/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ dependencies {
2222
implementation 'org.springframework.boot:spring-boot-starter-web'
2323
compileOnly 'org.projectlombok:lombok'
2424
annotationProcessor 'org.projectlombok:lombok'
25-
compile group: 'com.hazelcast', name: 'hazelcast-client', version: '3.12.7'
25+
compile group: 'com.hazelcast', name: 'hazelcast', version: '4.0.1'
2626
testImplementation('org.springframework.boot:spring-boot-starter-test') {
2727
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
2828
}

spring-boot/hazelcast/hazelcast-client-server/src/main/java/io/reflectoring/cache/cleint/client/CacheClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import com.hazelcast.client.HazelcastClient;
44
import com.hazelcast.core.HazelcastInstance;
5-
import com.hazelcast.core.IMap;
5+
import com.hazelcast.map.IMap;
66
import io.reflectoring.cache.cleint.rest.Car;
77
import org.springframework.stereotype.Component;
88

spring-boot/hazelcast/hazelcast-client-server/src/test/java/io/reflectoring/cache/cleint/AbstractIntegrationTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
public class AbstractIntegrationTest {
88

99
static GenericContainer firstMember =
10-
new FixedHostPortGenericContainer("hazelcast/hazelcast:3.12.7")
10+
new FixedHostPortGenericContainer("hazelcast/hazelcast:4.0.1")
1111
.withFixedExposedPort(5701, 5701);
1212

1313
static GenericContainer secondMember =
14-
new FixedHostPortGenericContainer("hazelcast/hazelcast:3.12.7")
14+
new FixedHostPortGenericContainer("hazelcast/hazelcast:4.0.1")
1515
.withFixedExposedPort(5702, 5701);
1616

1717
@BeforeAll

0 commit comments

Comments
 (0)