Created
December 11, 2019 07:27
-
-
Save stefanotroia/76590c5f35b46033e219b7359e866e3a to your computer and use it in GitHub Desktop.
Spring webflux caching with Hazelcast pom
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<dependencies> | |
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter-webflux</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.projectlombok</groupId> | |
<artifactId>lombok</artifactId> | |
<version>1.18.6</version> | |
</dependency> | |
<dependency> | |
<groupId>com.hazelcast</groupId> | |
<artifactId>hazelcast</artifactId> | |
<version>3.7.2</version> | |
</dependency> | |
<dependency> | |
<groupId>io.projectreactor.addons</groupId> | |
<artifactId>reactor-extra</artifactId> | |
<version>3.3.0.RELEASE</version> | |
</dependency> | |
</dependencies> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment