-
Notifications
You must be signed in to change notification settings - Fork 670
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SOLR-17567: Improve Stream CLI implementation (#2872)
Cleanup and adding polish to the Stream CLI tool after getting more eyes on it. More robust handling of comments in .expr files, better use of CLI options, preventing "Strings" from being used to select an Option, in favour of an Option object. --------- Co-authored-by: Christos Malliaridis <c.malliaridis@gmail.com>
- Loading branch information
1 parent
a4084e8
commit 621165a
Showing
9 changed files
with
152 additions
and
108 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
gradle/validation/forbidden-apis/commons-cli.commons-cli.all.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
@defaultMessage Use a org.apache.commons.cli.Option instead of a String value | ||
org.apache.commons.cli.CommandLine#hasOption(java.lang.String) | ||
org.apache.commons.cli.CommandLine#getOptionValue(java.lang.String) | ||
org.apache.commons.cli.CommandLine#getOptionValue(java.lang.String, java.lang.String) | ||
org.apache.commons.cli.CommandLine#getParsedOptionValue(java.lang.String, java.lang.Object) | ||
org.apache.commons.cli.CommandLine#hasOption(char) | ||
org.apache.commons.cli.CommandLine#getOptionValue(char) | ||
org.apache.commons.cli.CommandLine#getOptionValue(char, java.lang.String) | ||
#org.apache.commons.cli.CommandLine#getOptionValue(char, Supplier<String>) | ||
org.apache.commons.cli.CommandLine#getOptionValues(char) | ||
org.apache.commons.cli.CommandLine#getOptionValues(java.lang.String) | ||
org.apache.commons.cli.CommandLine#getParsedOptionValue(char) | ||
# org.apache.commons.cli.CommandLine#getParsedOptionValue(char, Supplier<T>) | ||
org.apache.commons.cli.CommandLine#getParsedOptionValue(char, java.lang.Object) | ||
org.apache.commons.cli.CommandLine#getParsedOptionValue(java.lang.String) | ||
# org.apache.commons.cli.CommandLine#getParsedOptionValue(String, Supplier<T>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.