jcommander
                                
                                
                                
                                    jcommander copied to clipboard
                            
                            
                            
                        Command line parsing framework for Java
JCommander can accept ``` IStringConverterInstanceFactory ``` But it does not work for the main parameter ``` com.beust.jcommander.ParameterException: Could not invoke null Reason: Can not set .Name field >.Name to java.lang.String...
JPMS support
It would be nice to be able to use jcommander in an app built by `jlink`. This could be done if it defined a `module-info.class` for use with JPMS (apparently...
Consumers of this project need to protect themselves against supply chain attacks by being able to check the signatures of the files downloaded from (say) Maven Central against a list...
How to add command line parameter dependency between multiple parameters using JCommander?
Added support for ISO8601 date formats, added a formatter for LocalDate
Is there any change a new release could be created that includes #523? This would be extremely helpful. Thanks!
Howdy! First off, thanks for the ongoing support of JCommander! It's very handy to have this library. I believe I've identified a regression defect in JCommander 1.71 (latest release), so...
Shouldn't the return type of the method be used to determine the parameter type? I ran into this issue when experimenting with enums (generic enums to be precise...) and when...
I try to create an abstract class with some common parameters so I can inherit from this class and create several similar parameters. But I'm struggling with the Jcommander with...
Consider the following argument definition: ```java @Parameter( names = { "-y", "--dry-run" }, description = "Perform a dry-run.", arity = 0, order = 9 ) private Boolean dryRun = FALSE;...