Add SNAPSHOT repository to documentation.

Fixes gh-28

Original pull request: gh-29.
This commit is contained in:
Rob Winch
2016-10-27 17:05:40 -05:00
committed by Mark Paluch
parent 9ad5705ddf
commit 9cc82daefe

View File

@@ -32,8 +32,8 @@ Then add the following to `pom.xml` dependencies section.
----
====
You will also need to add the location of the Spring Milestone repository for maven to your
`pom.xml` which is at the same level of your `<dependencies/>` element.
If you are using a milestone or release candidate, you will also need to add the location of the Spring
Milestone repository to your maven `pom.xml` which is at the same level of your `<dependencies/>` element.
====
[source,xml]
@@ -50,6 +50,24 @@ You will also need to add the location of the Spring Milestone repository for ma
The repository is also http://repo.spring.io/milestone/org/springframework/vault/[browseable here].
If you are using a SNAPSHOT, you will also need to add the location of the Spring
Snapshot repository to your maven `pom.xml` which is at the same level of your `<dependencies/>` element.
====
[source,xml]
----
<repositories>
<repository>
<id>spring-snapshot</id>
<name>Spring Maven SNAPSHOT Repository</name>
<url>http://repo.spring.io/libs-snapshot</url>
</repository>
</repositories>
----
====
The repository is also http://repo.spring.io/milestone/org/springframework/vault/[browseable here].
Create a simple `Secrets` class to persist:
.Mapped data object