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 6c948c3e34a..08de69663d8 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-remote") +@Grab("spring-boot-starter-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 4fc2133ff66..ee32455687a 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-remote`: +dependency to `spring-boot-starter-shell`: [source,xml,indent=0] ---- org.springframework.boot - spring-boot-starter-shell-remote + spring-boot-starter-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 79aad331e88..11b50518c7a 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-remote` +|`spring-boot-starter-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 934a88c78d1..1906f994f54 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-remote + spring-boot-starter-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 fdfeb94a662..7297b012a26 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-remote + spring-boot-starter-shell org.springframework.boot diff --git a/spring-boot-starters/pom.xml b/spring-boot-starters/pom.xml index 79e3adf0dec..aa6f818c964 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-remote + spring-boot-starter-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 a22f0070ee7..57072b76652 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-remote + spring-boot-starter-shell ${spring-boot.version} diff --git a/spring-boot-starters/spring-boot-starter-shell-remote/pom.xml b/spring-boot-starters/spring-boot-starter-shell/pom.xml similarity index 97% rename from spring-boot-starters/spring-boot-starter-shell-remote/pom.xml rename to spring-boot-starters/spring-boot-starter-shell/pom.xml index 89b3e3ef078..ebf2610f5c6 100644 --- a/spring-boot-starters/spring-boot-starter-shell-remote/pom.xml +++ b/spring-boot-starters/spring-boot-starter-shell/pom.xml @@ -6,7 +6,7 @@ spring-boot-starters 1.0.0.BUILD-SNAPSHOT - spring-boot-starter-shell-remote + spring-boot-starter-shell jar ${basedir}/../.. diff --git a/spring-boot-starters/spring-boot-starter-shell-remote/src/main/resources/META-INF/spring.provides b/spring-boot-starters/spring-boot-starter-shell/src/main/resources/META-INF/spring.provides similarity index 100% rename from spring-boot-starters/spring-boot-starter-shell-remote/src/main/resources/META-INF/spring.provides rename to spring-boot-starters/spring-boot-starter-shell/src/main/resources/META-INF/spring.provides diff --git a/spring-boot-starters/spring-boot-starter-shell-remote/src/main/resources/commands/crash/autoconfig.groovy b/spring-boot-starters/spring-boot-starter-shell/src/main/resources/commands/crash/autoconfig.groovy similarity index 100% rename from spring-boot-starters/spring-boot-starter-shell-remote/src/main/resources/commands/crash/autoconfig.groovy rename to spring-boot-starters/spring-boot-starter-shell/src/main/resources/commands/crash/autoconfig.groovy diff --git a/spring-boot-starters/spring-boot-starter-shell-remote/src/main/resources/commands/crash/beans.groovy b/spring-boot-starters/spring-boot-starter-shell/src/main/resources/commands/crash/beans.groovy similarity index 100% rename from spring-boot-starters/spring-boot-starter-shell-remote/src/main/resources/commands/crash/beans.groovy rename to spring-boot-starters/spring-boot-starter-shell/src/main/resources/commands/crash/beans.groovy diff --git a/spring-boot-starters/spring-boot-starter-shell-remote/src/main/resources/commands/crash/login.groovy b/spring-boot-starters/spring-boot-starter-shell/src/main/resources/commands/crash/login.groovy similarity index 100% rename from spring-boot-starters/spring-boot-starter-shell-remote/src/main/resources/commands/crash/login.groovy rename to spring-boot-starters/spring-boot-starter-shell/src/main/resources/commands/crash/login.groovy diff --git a/spring-boot-starters/spring-boot-starter-shell-remote/src/main/resources/commands/crash/metrics.groovy b/spring-boot-starters/spring-boot-starter-shell/src/main/resources/commands/crash/metrics.groovy similarity index 100% rename from spring-boot-starters/spring-boot-starter-shell-remote/src/main/resources/commands/crash/metrics.groovy rename to spring-boot-starters/spring-boot-starter-shell/src/main/resources/commands/crash/metrics.groovy