diff --git a/spring-boot-dependencies/pom.xml b/spring-boot-dependencies/pom.xml
index 513bc1f8da0..b7a4823bf24 100644
--- a/spring-boot-dependencies/pom.xml
+++ b/spring-boot-dependencies/pom.xml
@@ -207,6 +207,11 @@
spring-boot-starter-freemarker
1.1.0.BUILD-SNAPSHOT
+
+ org.springframework.boot
+ spring-boot-starter-groovy-templates
+ 1.1.0.BUILD-SNAPSHOT
+
org.springframework.boot
spring-boot-starter-integration
diff --git a/spring-boot-samples/spring-boot-sample-web-groovy-templates/pom.xml b/spring-boot-samples/spring-boot-sample-web-groovy-templates/pom.xml
index 07a396506ca..d9cc776d7d6 100644
--- a/spring-boot-samples/spring-boot-sample-web-groovy-templates/pom.xml
+++ b/spring-boot-samples/spring-boot-sample-web-groovy-templates/pom.xml
@@ -22,11 +22,7 @@
org.springframework.boot
- spring-boot-starter-web
-
-
- org.codehaus.groovy
- groovy-templates
+ spring-boot-starter-groovy-templates
org.springframework.boot
diff --git a/spring-boot-starters/pom.xml b/spring-boot-starters/pom.xml
index 56d176131e7..bb7a588aaef 100644
--- a/spring-boot-starters/pom.xml
+++ b/spring-boot-starters/pom.xml
@@ -30,6 +30,7 @@
spring-boot-starter-data-rest
spring-boot-starter-data-solr
spring-boot-starter-freemarker
+ spring-boot-starter-groovy-templates
spring-boot-starter-integration
spring-boot-starter-jdbc
spring-boot-starter-jetty
diff --git a/spring-boot-starters/spring-boot-starter-groovy-templates/pom.xml b/spring-boot-starters/spring-boot-starter-groovy-templates/pom.xml
new file mode 100644
index 00000000000..4fafe8c192b
--- /dev/null
+++ b/spring-boot-starters/spring-boot-starter-groovy-templates/pom.xml
@@ -0,0 +1,34 @@
+
+
+ 4.0.0
+
+ org.springframework.boot
+ spring-boot-starters
+ 1.1.0.BUILD-SNAPSHOT
+
+ spring-boot-starter-groovy-templates
+ spring-boot-starter-groovy-templates
+ Spring Boot FreeMarker Starter
+ http://projects.spring.io/spring-boot/
+
+ Pivotal Software, Inc.
+ http://www.spring.io
+
+
+ ${basedir}/../..
+
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+ org.codehaus.groovy
+ groovy
+
+
+ org.codehaus.groovy
+ groovy-templates
+
+
+
diff --git a/spring-boot-starters/spring-boot-starter-groovy-templates/src/main/resources/META-INF/spring.provides b/spring-boot-starters/spring-boot-starter-groovy-templates/src/main/resources/META-INF/spring.provides
new file mode 100644
index 00000000000..3f52c55a60b
--- /dev/null
+++ b/spring-boot-starters/spring-boot-starter-groovy-templates/src/main/resources/META-INF/spring.provides
@@ -0,0 +1 @@
+provides: freemarker,spring-context-support
\ No newline at end of file