From 47eb8180b374f2dca29b10abe3a06716b6ea6d84 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Fri, 21 Mar 2014 09:05:56 -0700 Subject: [PATCH] Rename spring-boot-starter-shell -> remote-shell Fixes gh-462 --- spring-boot-cli/src/test/resources/repro-samples/crsh.groovy | 2 +- .../src/main/asciidoc/production-ready-features.adoc | 4 ++-- spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc | 2 +- spring-boot-samples/spring-boot-sample-actuator-noweb/pom.xml | 2 +- spring-boot-samples/spring-boot-sample-actuator/pom.xml | 2 +- spring-boot-starters/pom.xml | 2 +- spring-boot-starters/spring-boot-starter-parent/pom.xml | 2 +- .../pom.xml | 2 +- .../src/main/resources/META-INF/spring.provides | 0 .../src/main/resources/commands/crash/autoconfig.groovy | 0 .../src/main/resources/commands/crash/beans.groovy | 0 .../src/main/resources/commands/crash/endpoint.groovy | 0 .../src/main/resources/commands/crash/login.groovy | 0 .../src/main/resources/commands/crash/metrics.groovy | 0 14 files changed, 9 insertions(+), 9 deletions(-) rename spring-boot-starters/{spring-boot-starter-shell => spring-boot-starter-remote-shell}/pom.xml (97%) rename spring-boot-starters/{spring-boot-starter-shell => spring-boot-starter-remote-shell}/src/main/resources/META-INF/spring.provides (100%) rename spring-boot-starters/{spring-boot-starter-shell => spring-boot-starter-remote-shell}/src/main/resources/commands/crash/autoconfig.groovy (100%) rename spring-boot-starters/{spring-boot-starter-shell => spring-boot-starter-remote-shell}/src/main/resources/commands/crash/beans.groovy (100%) rename spring-boot-starters/{spring-boot-starter-shell => spring-boot-starter-remote-shell}/src/main/resources/commands/crash/endpoint.groovy (100%) rename spring-boot-starters/{spring-boot-starter-shell => spring-boot-starter-remote-shell}/src/main/resources/commands/crash/login.groovy (100%) rename spring-boot-starters/{spring-boot-starter-shell => spring-boot-starter-remote-shell}/src/main/resources/commands/crash/metrics.groovy (100%) 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 08de69663d8..51f9af955a1 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 133da3c0f3d..94f696c48f7 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 11b50518c7a..f1a97df9df3 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 1906f994f54..733c4c479bc 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 7297b012a26..0240a386a67 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 aa6f818c964..093d5b835e5 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 a8bd9bcbe32..aead2b01a04 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 ebf2610f5c6..f474d58579f 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