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