diff --git a/_config.yml b/_config.yml
index c705244..d6aa40e 100644
--- a/_config.yml
+++ b/_config.yml
@@ -29,8 +29,8 @@ project: spring-credhub
github_repo_url: http://github.com/spring-projects/spring-credhub
# If you want to include a custom pom.xml or gradle template set these value to true and add _include files
-custom_pom_template: false
-custom_gradle_template: false
+custom_pom_template: true
+custom_gradle_template: true
### The following properties are constant for most projects
diff --git a/_includes/build.gradle b/_includes/build.gradle
new file mode 100644
index 0000000..bce7570
--- /dev/null
+++ b/_includes/build.gradle
@@ -0,0 +1,4 @@
+dependencies {
+ compile '{@= groupId @}:spring-credhub-starter:{@= version @}'
+}
+
diff --git a/_includes/pom.xml b/_includes/pom.xml
index 5b13872..310596d 100644
--- a/_includes/pom.xml
+++ b/_includes/pom.xml
@@ -1,7 +1,8 @@
{@= groupId @}
- spring-credhub-core
+ spring-credhub-starter
{@= version @}
+
diff --git a/index.html b/index.html
index 49b6142..08d57a8 100644
--- a/index.html
+++ b/index.html
@@ -44,6 +44,10 @@ Spring CredHub provides client-side support for storing, retrieving, and deletin
+## Quick Start
+
+{% include download_widget.md %}
+
## Configure CredHub
Spring CredHub will auto configure a `CredHubTemplate` if you provide the `spring.credhub.url` property to your Spring Boot application.