6e1ca089d75045f07a6c629696dc183b37f29727
- Issue in #622 is that its command type is `String` and internally some incoming arguments(it's List) were converted to String by joining with space. This caused one case with help command to get conversion via spring's ConversionService(CollectionToStringConverter) which joins by commas. That was we saw in failed example. - Remove needed joins in CommandParser and let it just pass List which then works better with ConversionService. - This then needs a `command` option type change from String to String[] which it really is as you should be able to give whole command as an argument. - Fixes #622
= Spring Shell Active development branch is `main` targeting work for `3.0.x` and `2.1.x` is for maintaining current latest release. == Building Building and running tests: ``` ./gradlew build ``` Publishing to local maven cache: ``` ./gradlew publishToMavenLocal ```
Description
Languages
Java
100%