From 9cc82daefe38b644818ce7349149bbc9b58669f4 Mon Sep 17 00:00:00 2001 From: Rob Winch Date: Thu, 27 Oct 2016 17:05:40 -0500 Subject: [PATCH] Add SNAPSHOT repository to documentation. Fixes gh-28 Original pull request: gh-29. --- .../asciidoc/reference/getting-started.adoc | 22 +++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/src/main/asciidoc/reference/getting-started.adoc b/src/main/asciidoc/reference/getting-started.adoc index 238ba240..a1bde856 100644 --- a/src/main/asciidoc/reference/getting-started.adoc +++ b/src/main/asciidoc/reference/getting-started.adoc @@ -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 `` 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 `` 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 `` element. + +==== +[source,xml] +---- + + + spring-snapshot + Spring Maven SNAPSHOT Repository + http://repo.spring.io/libs-snapshot + + +---- +==== + +The repository is also http://repo.spring.io/milestone/org/springframework/vault/[browseable here]. + Create a simple `Secrets` class to persist: .Mapped data object