ac97044e466d5a52ab3005e53c0b573274491285
* Allow unmatched quotes if at the end 30e34da977289ed52221ae0b4e9f5eabdf392a60 * Allow trailing key without an option b6814870a28f5a4bc9509556a847acec5db10523 * Allow completions in unmatched quotes f93bbc7d44461595eb299797a36bd10bc23b83f9 * Fix case where parser would think it is at end but in quotes is intended for it (as a option marker) a2a710463761668c67810448bd6803ce67bba35e * Fix corner case of empty quoted string 4fdcfbf2e2cbbee9a7a624735be81ed98fc67ed6 * Handle dangling dash dash at the end 40dd0bbc867b45c8cb8c37a82d5afe93ccbcb960 * Add author tag 9e3a6e0c0964d39e51f6496c97bfdf74c153bd9d
Spring Shell is an interactive shell that can be easily extended with commands using a Spring based programming model. The latest release is 1.0.0.RELEASE
Useful links
More information can be found on the project home page
If you have ideas about how to improve or extend the scope, please feel free to contribute.
Artifacts
<!-- used for Spring GA Releases releases, artifacts are also in maven central -->
<repository>
<-- Release -->
<id>spring-release</id>
<name>Spring Maven RELEASE Repository</name>
<url>http://repo.springframework.org/release</url>
</repository>
<-- libs-release for JLine fork, artifacts may not be in maven central -->
<repository>
<id>libs-release</id>
<name>Spring Maven libs-release Repository</name>
<url>http://repo.springframework.org/libs-release</url>
</repository>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-shell</artifactId>
<version>1.0.0.RELEASE</version>
</dependency>
<!-- used for nightly builds -->
<repository>
<-- Snapshots -->
<id>spring-snapshot</id>
<name>Spring Maven SNAPSHOT Repository</name>
<url>http://repo.springframework.org/libs-snapshot</url>
</repository>
<dependency>
<groupId>org.springframework.shell</groupId>
<artifactId>spring-shell</artifactId>
<version>1.0.1.SNAPSHOT</version>
</dependency>
- Gradle:
repositories {
maven { url "http://repo.springsource.org/lib-release" }
}
dependencies {
compile "org.springframework.shell:spring-shell:1.0.0.RELEASE"
}
Building
Spring Shell is built with Gradle. To build Spring Shell, run
./gradlew
Running Example
cd samples/helloworld
./gradlew installApp
cd build/install/helloworld/bin
helloworld
Contributing
Here are some ways for you to get involved in the community:
- Get involved with the Spring community on the Spring Community Forums. Please help out on the forum by responding to questions and joining the debate.
- Create JIRA tickets for bugs and new features and comment and vote on the ones that you are interested in.
Github is for social coding: if you want to write code, we encourage contributions through pull requests from forks of this repository. If you want to contribute code this way, please reference a JIRA tracker ticket covering the specific issue you are addressing. Before we accept a non-trivial patch or pull request we will need you to sign the contributor's agreement. Signing the contributor's agreement does not grant anyone commit rights to the main repository, but it does mean that we can accept your contributions, and you will get an author credit if we do. Active contributors might be asked to join the core team, and given the ability to merge pull requests.
Description
Languages
Java
100%