Browse Source

Rename spring-boot-starter-shell -> remote-shell

Fixes gh-462
pull/535/merge
Phillip Webb 12 years ago
parent
commit
47eb8180b3
  1. 2
      spring-boot-cli/src/test/resources/repro-samples/crsh.groovy
  2. 4
      spring-boot-docs/src/main/asciidoc/production-ready-features.adoc
  3. 2
      spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc
  4. 2
      spring-boot-samples/spring-boot-sample-actuator-noweb/pom.xml
  5. 2
      spring-boot-samples/spring-boot-sample-actuator/pom.xml
  6. 2
      spring-boot-starters/pom.xml
  7. 2
      spring-boot-starters/spring-boot-starter-parent/pom.xml
  8. 2
      spring-boot-starters/spring-boot-starter-remote-shell/pom.xml
  9. 0
      spring-boot-starters/spring-boot-starter-remote-shell/src/main/resources/META-INF/spring.provides
  10. 0
      spring-boot-starters/spring-boot-starter-remote-shell/src/main/resources/commands/crash/autoconfig.groovy
  11. 0
      spring-boot-starters/spring-boot-starter-remote-shell/src/main/resources/commands/crash/beans.groovy
  12. 0
      spring-boot-starters/spring-boot-starter-remote-shell/src/main/resources/commands/crash/endpoint.groovy
  13. 0
      spring-boot-starters/spring-boot-starter-remote-shell/src/main/resources/commands/crash/login.groovy
  14. 0
      spring-boot-starters/spring-boot-starter-remote-shell/src/main/resources/commands/crash/metrics.groovy

2
spring-boot-cli/src/test/resources/repro-samples/crsh.groovy

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
package org.test
@Grab("spring-boot-starter-shell")
@Grab("spring-boot-starter-remote-shell")
@RestController
class SampleController {

4
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 @@ -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]
----
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-shell</artifactId>
<artifactId>spring-boot-starter-remote-shell</artifactId>
</dependency>
----

2
spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc

@ -269,7 +269,7 @@ add '<<production-ready-features.adoc#production-ready, production ready>>' feat @@ -269,7 +269,7 @@ add '<<production-ready-features.adoc#production-ready, production ready>>' 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.
|===

2
spring-boot-samples/spring-boot-sample-actuator-noweb/pom.xml

@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-shell</artifactId>
<artifactId>spring-boot-starter-remote-shell</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>

2
spring-boot-samples/spring-boot-sample-actuator/pom.xml

@ -39,7 +39,7 @@ @@ -39,7 +39,7 @@
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-shell</artifactId>
<artifactId>spring-boot-starter-remote-shell</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>

2
spring-boot-starters/pom.xml

@ -29,7 +29,7 @@ @@ -29,7 +29,7 @@
<module>spring-boot-starter-parent</module>
<module>spring-boot-starter-redis</module>
<module>spring-boot-starter-security</module>
<module>spring-boot-starter-shell</module>
<module>spring-boot-starter-remote-shell</module>
<module>spring-boot-starter-test</module>
<module>spring-boot-starter-thymeleaf</module>
<module>spring-boot-starter-tomcat</module>

2
spring-boot-starters/spring-boot-starter-parent/pom.xml

@ -122,7 +122,7 @@ @@ -122,7 +122,7 @@
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-shell</artifactId>
<artifactId>spring-boot-starter-remote-shell</artifactId>
<version>${spring-boot.version}</version>
</dependency>
<dependency>

2
spring-boot-starters/spring-boot-starter-shell/pom.xml → spring-boot-starters/spring-boot-starter-remote-shell/pom.xml

@ -6,7 +6,7 @@ @@ -6,7 +6,7 @@
<artifactId>spring-boot-starters</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
</parent>
<artifactId>spring-boot-starter-shell</artifactId>
<artifactId>spring-boot-starter-remote-shell</artifactId>
<packaging>jar</packaging>
<properties>
<main.basedir>${basedir}/../..</main.basedir>

0
spring-boot-starters/spring-boot-starter-shell/src/main/resources/META-INF/spring.provides → spring-boot-starters/spring-boot-starter-remote-shell/src/main/resources/META-INF/spring.provides

0
spring-boot-starters/spring-boot-starter-shell/src/main/resources/commands/crash/autoconfig.groovy → spring-boot-starters/spring-boot-starter-remote-shell/src/main/resources/commands/crash/autoconfig.groovy

0
spring-boot-starters/spring-boot-starter-shell/src/main/resources/commands/crash/beans.groovy → spring-boot-starters/spring-boot-starter-remote-shell/src/main/resources/commands/crash/beans.groovy

0
spring-boot-starters/spring-boot-starter-shell/src/main/resources/commands/crash/endpoint.groovy → spring-boot-starters/spring-boot-starter-remote-shell/src/main/resources/commands/crash/endpoint.groovy

0
spring-boot-starters/spring-boot-starter-shell/src/main/resources/commands/crash/login.groovy → spring-boot-starters/spring-boot-starter-remote-shell/src/main/resources/commands/crash/login.groovy

0
spring-boot-starters/spring-boot-starter-shell/src/main/resources/commands/crash/metrics.groovy → spring-boot-starters/spring-boot-starter-remote-shell/src/main/resources/commands/crash/metrics.groovy

Loading…
Cancel
Save