Polishing.

See #583.
This commit is contained in:
Mark Paluch
2021-04-30 10:33:11 +02:00
parent cbe9f40219
commit 01d78baee2
2 changed files with 4 additions and 8 deletions

View File

@@ -1,6 +1,6 @@
# Spring Data Examples
[![Build Status](https://travis-ci.org/spring-projects/spring-data-examples.svg?branch=issue%2F%2313)](https://travis-ci.org/spring-projects/spring-data-examples)
[![Build Status](https://travis-ci.org/spring-projects/spring-data-examples.svg?branch=main)](https://travis-ci.org/spring-projects/spring-data-examples)
This repository contains example projects for the different Spring Data modules to showcase the API and how to use the features provided by the modules.
@@ -82,6 +82,8 @@ We have separate folders for the samples of individual modules:
* `sentinel` - Example for Redis Sentinel support.
* `streams` - Example for [Redis Streams](https://redis.io/topics/streams-intro) support.
Local Redis instances must be running to run the tests.
## Spring Data REST
* `headers` - A sample showing the population of HTTP headers and the usage of them to perform conditional `GET` requests.
@@ -117,4 +119,4 @@ We have separate folders for the samples of individual modules:
in the IntelliJ plugins repository and as
a [download](https://projectlombok.org/download) for Eclipse-based IDEs.
You need Java 16 or newer to run and compile the examples.
You need Java 16 or newer and Docker to run and compile the examples. Most examples start their database via Testcontainers unless stated otherwise.

View File

@@ -35,12 +35,6 @@
<artifactId>java-driver-core</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>18.0</version>
</dependency>
</dependencies>
</project>