Skip to content

Commit aa3204e

Browse files
ajbrownchristophstrobl
authored andcommitted
DATAKV-100 - Update Maven download instructions.
Updated invalid maven artifactId and added note on spring-snapshot repository for consuming those. Original Pull Request: #6
1 parent 07b3a15 commit aa3204e

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

readme.md

+12-1
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,22 @@ Download the jar though Maven:
1616
```xml
1717
<dependency>
1818
<groupId>org.springframework.data</groupId>
19-
<artifactId>spring-data-key-value</artifactId>
19+
<artifactId>spring-data-keyvalue</artifactId>
2020
<version>0.1.0.BUILD-SNAPSHOT</version>
2121
</dependency>
2222
```
2323

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+
2435
The `ConcurrentHashMap` based default configuration looks like this:
2536
```java
2637
@Configuration

0 commit comments

Comments
 (0)