Merge pull request #400 from likel/master

add airline as a command-line argument parser
This commit is contained in:
Andreas Kull
2016-08-20 22:42:12 +02:00
committed by GitHub

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.