Skip to content

Instantly share code, notes, and snippets.

@stefanotroia
Created December 11, 2019 07:27
Show Gist options
  • Save stefanotroia/76590c5f35b46033e219b7359e866e3a to your computer and use it in GitHub Desktop.
Save stefanotroia/76590c5f35b46033e219b7359e866e3a to your computer and use it in GitHub Desktop.
Spring webflux caching with Hazelcast pom
<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