You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
stacktrace: Display the full stacktrace of the last error.
53
+
clear: Clear the shell screen.
54
+
quit, exit: Exit the shell.
55
+
history: Display or save the history of previously run commands
56
+
version: Show version info
57
+
script: Read and execute commands from a file.
4
58
5
-
== Building
59
+
Demo Application
60
+
hi:
61
+
62
+
shell:>hi
63
+
hi
64
+
----
65
+
66
+
Running it as _jar_ non-interactive:
67
+
68
+
[source,bash]
69
+
----
70
+
$ java -jar demo.jar hi
71
+
72
+
hi
73
+
----
74
+
75
+
== Getting Help
76
+
Are you having trouble with Spring Shell? We want to help!
77
+
78
+
* Join our GitHub Discussion section and post your question there.
79
+
80
+
== Reporting Issues
81
+
Spring Shell uses GitHub's integrated issue tracking system to record bugs and feature requests.
82
+
If you want to raise an issue, please follow the recommendations below:
83
+
84
+
* Before you log a bug, please search the {github}/issues[issue tracker] to see if someone has already reported the problem.
85
+
* If the issue doesn't already exist, {github}/issues/new[create a new issue].
86
+
* Please provide as much information as possible with the issue report.
87
+
We like to know the Spring Boot and Shell version, operating system, and JVM version you're using.
88
+
* If you need to paste code or include a stack trace, use Markdown.
89
+
+++```+++ escapes before and after your text.
90
+
* If possible, try to create a test case or project that replicates the problem and attach it to the issue.
91
+
92
+
== Building from Source
93
+
94
+
Active development branch is `main` targeting work for `3.1.x`. `3.0.x` and `2.1.x` are for maintaining current active releases.
6
95
7
96
Building and running tests:
8
97
@@ -15,3 +104,9 @@ Publishing to local maven cache:
15
104
```
16
105
./gradlew publishToMavenLocal
17
106
```
107
+
108
+
== Example
109
+
https://github.com/spring-projects/spring-shell/tree/main/spring-shell-samples/[Sample] is a current demonstration how to use `spring-shell`.
110
+
111
+
== License
112
+
Spring Shell is Open Source software released under the https://www.apache.org/licenses/LICENSE-2.0.html[Apache 2.0 license].
0 commit comments