diff --git a/spring-boot-cli/src/test/resources/repro-samples/crsh.groovy b/spring-boot-cli/src/test/resources/repro-samples/crsh.groovy
index 08de69663d..51f9af955a 100644
--- a/spring-boot-cli/src/test/resources/repro-samples/crsh.groovy
+++ b/spring-boot-cli/src/test/resources/repro-samples/crsh.groovy
@@ -1,6 +1,6 @@
package org.test
-@Grab("spring-boot-starter-shell")
+@Grab("spring-boot-starter-remote-shell")
@RestController
class SampleController {
diff --git a/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc b/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc
index 133da3c0f3..94f696c48f 100644
--- a/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc
+++ b/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc
@@ -424,13 +424,13 @@ If you are using Jolokia but you don't want Spring Boot to configure it, simply
== Monitoring and management using a remote shell
Spring Boot supports an integrated Java shell called ``CRaSH''. You can use CRaSH to
`ssh` or `telnet` into your running application. To enable remote shell support add a
-dependency to `spring-boot-starter-shell`:
+dependency to `spring-boot-starter-remote-shell`:
[source,xml,indent=0]
----
org.springframework.boot
- spring-boot-starter-shell
+ spring-boot-starter-remote-shell
----
diff --git a/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc b/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc
index 11b50518c7..f1a97df9df 100644
--- a/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc
+++ b/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc
@@ -269,7 +269,7 @@ add '<>' feat
|`spring-boot-starter-actuator`
|Adds production ready features such as metrics and monitoring.
-|`spring-boot-starter-shell`
+|`spring-boot-starter-remote-shell`
|Adds remote `ssh` shell support.
|===
diff --git a/spring-boot-samples/spring-boot-sample-actuator-noweb/pom.xml b/spring-boot-samples/spring-boot-sample-actuator-noweb/pom.xml
index 1906f994f5..733c4c479b 100644
--- a/spring-boot-samples/spring-boot-sample-actuator-noweb/pom.xml
+++ b/spring-boot-samples/spring-boot-sample-actuator-noweb/pom.xml
@@ -19,7 +19,7 @@
org.springframework.boot
- spring-boot-starter-shell
+ spring-boot-starter-remote-shell
org.springframework.boot
diff --git a/spring-boot-samples/spring-boot-sample-actuator/pom.xml b/spring-boot-samples/spring-boot-sample-actuator/pom.xml
index 7297b012a2..0240a386a6 100644
--- a/spring-boot-samples/spring-boot-sample-actuator/pom.xml
+++ b/spring-boot-samples/spring-boot-sample-actuator/pom.xml
@@ -39,7 +39,7 @@
org.springframework.boot
- spring-boot-starter-shell
+ spring-boot-starter-remote-shell
org.springframework.boot
diff --git a/spring-boot-starters/pom.xml b/spring-boot-starters/pom.xml
index aa6f818c96..093d5b835e 100644
--- a/spring-boot-starters/pom.xml
+++ b/spring-boot-starters/pom.xml
@@ -29,7 +29,7 @@
spring-boot-starter-parent
spring-boot-starter-redis
spring-boot-starter-security
- spring-boot-starter-shell
+ spring-boot-starter-remote-shell
spring-boot-starter-test
spring-boot-starter-thymeleaf
spring-boot-starter-tomcat
diff --git a/spring-boot-starters/spring-boot-starter-parent/pom.xml b/spring-boot-starters/spring-boot-starter-parent/pom.xml
index a8bd9bcbe3..aead2b01a0 100644
--- a/spring-boot-starters/spring-boot-starter-parent/pom.xml
+++ b/spring-boot-starters/spring-boot-starter-parent/pom.xml
@@ -122,7 +122,7 @@
org.springframework.boot
- spring-boot-starter-shell
+ spring-boot-starter-remote-shell
${spring-boot.version}
diff --git a/spring-boot-starters/spring-boot-starter-shell/pom.xml b/spring-boot-starters/spring-boot-starter-remote-shell/pom.xml
similarity index 97%
rename from spring-boot-starters/spring-boot-starter-shell/pom.xml
rename to spring-boot-starters/spring-boot-starter-remote-shell/pom.xml
index ebf2610f5c..f474d58579 100644
--- a/spring-boot-starters/spring-boot-starter-shell/pom.xml
+++ b/spring-boot-starters/spring-boot-starter-remote-shell/pom.xml
@@ -6,7 +6,7 @@
spring-boot-starters
1.0.0.BUILD-SNAPSHOT
- spring-boot-starter-shell
+ spring-boot-starter-remote-shell
jar
${basedir}/../..
diff --git a/spring-boot-starters/spring-boot-starter-shell/src/main/resources/META-INF/spring.provides b/spring-boot-starters/spring-boot-starter-remote-shell/src/main/resources/META-INF/spring.provides
similarity index 100%
rename from spring-boot-starters/spring-boot-starter-shell/src/main/resources/META-INF/spring.provides
rename to spring-boot-starters/spring-boot-starter-remote-shell/src/main/resources/META-INF/spring.provides
diff --git a/spring-boot-starters/spring-boot-starter-shell/src/main/resources/commands/crash/autoconfig.groovy b/spring-boot-starters/spring-boot-starter-remote-shell/src/main/resources/commands/crash/autoconfig.groovy
similarity index 100%
rename from spring-boot-starters/spring-boot-starter-shell/src/main/resources/commands/crash/autoconfig.groovy
rename to spring-boot-starters/spring-boot-starter-remote-shell/src/main/resources/commands/crash/autoconfig.groovy
diff --git a/spring-boot-starters/spring-boot-starter-shell/src/main/resources/commands/crash/beans.groovy b/spring-boot-starters/spring-boot-starter-remote-shell/src/main/resources/commands/crash/beans.groovy
similarity index 100%
rename from spring-boot-starters/spring-boot-starter-shell/src/main/resources/commands/crash/beans.groovy
rename to spring-boot-starters/spring-boot-starter-remote-shell/src/main/resources/commands/crash/beans.groovy
diff --git a/spring-boot-starters/spring-boot-starter-shell/src/main/resources/commands/crash/endpoint.groovy b/spring-boot-starters/spring-boot-starter-remote-shell/src/main/resources/commands/crash/endpoint.groovy
similarity index 100%
rename from spring-boot-starters/spring-boot-starter-shell/src/main/resources/commands/crash/endpoint.groovy
rename to spring-boot-starters/spring-boot-starter-remote-shell/src/main/resources/commands/crash/endpoint.groovy
diff --git a/spring-boot-starters/spring-boot-starter-shell/src/main/resources/commands/crash/login.groovy b/spring-boot-starters/spring-boot-starter-remote-shell/src/main/resources/commands/crash/login.groovy
similarity index 100%
rename from spring-boot-starters/spring-boot-starter-shell/src/main/resources/commands/crash/login.groovy
rename to spring-boot-starters/spring-boot-starter-remote-shell/src/main/resources/commands/crash/login.groovy
diff --git a/spring-boot-starters/spring-boot-starter-shell/src/main/resources/commands/crash/metrics.groovy b/spring-boot-starters/spring-boot-starter-remote-shell/src/main/resources/commands/crash/metrics.groovy
similarity index 100%
rename from spring-boot-starters/spring-boot-starter-shell/src/main/resources/commands/crash/metrics.groovy
rename to spring-boot-starters/spring-boot-starter-remote-shell/src/main/resources/commands/crash/metrics.groovy