Rename starter-shell-remote to starter-shell

Fixes gh-462
This commit is contained in:
Phillip Webb 2014-03-19 16:28:36 -07:00
parent 77db6c0e06
commit 4024450c5f
13 changed files with 9 additions and 9 deletions

View File

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

View File

@ -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 == Monitoring and management using a remote shell
Spring Boot supports an integrated Java shell called ``CRaSH''. You can use CRaSH to 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 `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] [source,xml,indent=0]
---- ----
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-shell-remote</artifactId> <artifactId>spring-boot-starter-shell</artifactId>
</dependency> </dependency>
---- ----

View File

@ -269,7 +269,7 @@ add '<<production-ready-features.adoc#production-ready, production ready>>' feat
|`spring-boot-starter-actuator` |`spring-boot-starter-actuator`
|Adds production ready features such as metrics and monitoring. |Adds production ready features such as metrics and monitoring.
|`spring-boot-starter-shell-remote` |`spring-boot-starter-shell`
|Adds remote `ssh` shell support. |Adds remote `ssh` shell support.
|=== |===

View File

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

View File

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

View File

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

View File

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

View File

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