Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions spring/spring-configuration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@
</properties>

<dependencies>
<dependency>
<groupId>com.hazelcast</groupId>
<artifactId>hazelcast-spring</artifactId>
<version>${hazelcast.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.hazelcast.com/schema/spring http://www.hazelcast.com/schema/spring/hazelcast-spring.xsd">
http://www.hazelcast.com/schema/spring https://www.hazelcast.com/schema/spring/hazelcast-spring-5.5.xsd">

<context:component-scan base-package="com.hazelcast.springconfiguration.annotated"/>

Expand Down Expand Up @@ -52,10 +52,4 @@
<hz:set id="set" instance-ref="instance" name="Set"/>
<hz:list id="list" instance-ref="instance" name="List"/>
<hz:executorService id="executorService" instance-ref="instance" name="ExecutorService"/>
<hz:flakeIdGenerator id="flakeIdGenerator" instance-ref="instance" name="FlakeIdGenerator"/>
<hz:atomicLong id="atomicLong" instance-ref="instance" name="atomicLong"/>
<hz:atomicReference id="atomicReference" instance-ref="instance" name="atomicReference"/>
<hz:countDownLatch id="countDownLatch" instance-ref="instance" name="countDownLatch"/>
<hz:semaphore id="semaphore" instance-ref="instance" name="semaphore"/>
<hz:lock id="lock" instance-ref="instance" name="lock"/>
</beans>
Loading