Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
47eb8180
Commit
47eb8180
authored
Mar 21, 2014
by
Phillip Webb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename spring-boot-starter-shell -> remote-shell
Fixes gh-462
parent
8c0703ad
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
9 additions
and
9 deletions
+9
-9
crsh.groovy
spring-boot-cli/src/test/resources/repro-samples/crsh.groovy
+1
-1
production-ready-features.adoc
...oot-docs/src/main/asciidoc/production-ready-features.adoc
+2
-2
using-spring-boot.adoc
spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc
+1
-1
pom.xml
...ng-boot-samples/spring-boot-sample-actuator-noweb/pom.xml
+1
-1
pom.xml
spring-boot-samples/spring-boot-sample-actuator/pom.xml
+1
-1
pom.xml
spring-boot-starters/pom.xml
+1
-1
pom.xml
spring-boot-starters/spring-boot-starter-parent/pom.xml
+1
-1
pom.xml
...ng-boot-starters/spring-boot-starter-remote-shell/pom.xml
+1
-1
spring.provides
...-remote-shell/src/main/resources/META-INF/spring.provides
+0
-0
autoconfig.groovy
...shell/src/main/resources/commands/crash/autoconfig.groovy
+0
-0
beans.groovy
...mote-shell/src/main/resources/commands/crash/beans.groovy
+0
-0
endpoint.groovy
...e-shell/src/main/resources/commands/crash/endpoint.groovy
+0
-0
login.groovy
...mote-shell/src/main/resources/commands/crash/login.groovy
+0
-0
metrics.groovy
...te-shell/src/main/resources/commands/crash/metrics.groovy
+0
-0
No files found.
spring-boot-cli/src/test/resources/repro-samples/crsh.groovy
View file @
47eb8180
package
org.test
package
org.test
@Grab
(
"spring-boot-starter-shell"
)
@Grab
(
"spring-boot-starter-
remote-
shell"
)
@RestController
@RestController
class
SampleController
{
class
SampleController
{
...
...
spring-boot-docs/src/main/asciidoc/production-ready-features.adoc
View file @
47eb8180
...
@@ -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
==
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
`:
dependency
to
`
spring
-
boot
-
starter
-
remote
-
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
</
artifactId
>
<
artifactId
>
spring
-
boot
-
starter
-
remote
-
shell
</
artifactId
>
</
dependency
>
</
dependency
>
----
----
...
...
spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc
View file @
47eb8180
...
@@ -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`
|`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`
|`spring-boot-starter-
remote-
shell`
|Adds remote `ssh` shell support.
|Adds remote `ssh` shell support.
|===
|===
...
...
spring-boot-samples/spring-boot-sample-actuator-noweb/pom.xml
View file @
47eb8180
...
@@ -19,7 +19,7 @@
...
@@ -19,7 +19,7 @@
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-shell
</artifactId>
<artifactId>
spring-boot-starter-
remote-
shell
</artifactId>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
...
...
spring-boot-samples/spring-boot-sample-actuator/pom.xml
View file @
47eb8180
...
@@ -39,7 +39,7 @@
...
@@ -39,7 +39,7 @@
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-shell
</artifactId>
<artifactId>
spring-boot-starter-
remote-
shell
</artifactId>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
...
...
spring-boot-starters/pom.xml
View file @
47eb8180
...
@@ -29,7 +29,7 @@
...
@@ -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
</module>
<module>
spring-boot-starter-
remote-
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>
...
...
spring-boot-starters/spring-boot-starter-parent/pom.xml
View file @
47eb8180
...
@@ -122,7 +122,7 @@
...
@@ -122,7 +122,7 @@
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-shell
</artifactId>
<artifactId>
spring-boot-starter-
remote-
shell
</artifactId>
<version>
${spring-boot.version}
</version>
<version>
${spring-boot.version}
</version>
</dependency>
</dependency>
<dependency>
<dependency>
...
...
spring-boot-starters/spring-boot-starter-shell/pom.xml
→
spring-boot-starters/spring-boot-starter-
remote-
shell/pom.xml
View file @
47eb8180
...
@@ -6,7 +6,7 @@
...
@@ -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
</artifactId>
<artifactId>
spring-boot-starter-
remote-
shell
</artifactId>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
<properties>
<properties>
<main.basedir>
${basedir}/../..
</main.basedir>
<main.basedir>
${basedir}/../..
</main.basedir>
...
...
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
View file @
47eb8180
File moved
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
View file @
47eb8180
File moved
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
View file @
47eb8180
File moved
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
View file @
47eb8180
File moved
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
View file @
47eb8180
File moved
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
View file @
47eb8180
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment