jcommander
jcommander copied to clipboard
Command line parsing framework for Java
In [ParameterDescription.java](https://github.com/cbeust/jcommander/blob/51a5915/src/main/java/com/beust/jcommander/ParameterDescription.java#L261) a new collection is created and the bean's setter is invoked. Afterwards, the items are added to the original collection, so if the bean's setter created a copy,...
There was a previous report of something similar to this issue but I am getting it with jcommander 1.72: This is code that was working before a dependency upgrade changed...
Hi, I have a question. In the manual you write the following: > JCommander supports _the @ syntax_ What does _the @ syntax_ refer to? Is there a specification for...
In the documentation (http://jcommander.org/#_main_parameter) it's stated that: > This parameter can be either a List or a single field (for example a String or a type that has a converter,...
Adressing the issue from #458
Hello, Thank you for your awesome library! It fits almost perfect all the use cases that I need, but unfortunately I came across a small inconsistency that I cannot work...
I wanted to look at the documentation on the website, but I'm getting: > Service Temporarily Unavailable > > The server is temporarily unable to service your request due to...
When using a list parameter with multiple names ``` @Parameter(names = {"--label", "-l"},) List labels; ``` and a `IDefaultProvider` ``` public static final class ConstantDefaultProvider implements IDefaultProvider { @Override public...
I was so happy when I found out that JCommander has supported unix-style usage formatting. But when I use it in my project, I am confused about the design of...
Currently the usage info is sent to stdout. It should be sent to stderr, by convention.