add airline as a command-line argument parser

This commit is contained in:
Ke Li
2016-08-05 23:06:03 +08:00
parent ad95691ed3
commit ca10d63d76

View File

@ -161,6 +161,7 @@ A curated list of awesome Java frameworks, libraries and software.
*Libraries that make it easy to parse command line options, arguments, etc.*
* [Airline](https://github.com/airlift/airline) - Annotation-based framework for parsing Git like command line arguments.
* [args4j](http://args4j.kohsuke.org/) - Small library to parse command like arguments similar to javac.
* [JCommander](http://jcommander.org/) - Command line arguments parsing framework with custom types and validation via implementing interfaces.
* [JOpt Simple](http://pholser.github.io/jopt-simple/) - Simple parser that uses the POSIX getopt() and GNU getopt_long() syntaxes. Does not use annotations, uses a fluent API instead.