We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07b3a15 commit aa3204eCopy full SHA for aa3204e
readme.md
@@ -16,11 +16,22 @@ Download the jar though Maven:
16
```xml
17
<dependency>
18
<groupId>org.springframework.data</groupId>
19
- <artifactId>spring-data-key-value</artifactId>
+ <artifactId>spring-data-keyvalue</artifactId>
20
<version>0.1.0.BUILD-SNAPSHOT</version>
21
</dependency>
22
```
23
24
+For snapshot versions, make sure you include the spring snapshots repository:
25
+
26
+```xml
27
+<repositories>
28
+ <repository>
29
+ <id>spring-libs-snapshot</id>
30
+ <url>http://repo.spring.io/libs-snapshot</url>
31
+ </repository>
32
+</repositories>
33
+```
34
35
The `ConcurrentHashMap` based default configuration looks like this:
36
```java
37
@Configuration
0 commit comments